div.news-detail {
    word-wrap: break-word;
}

div.news-detail img.detail_picture {
    float: left;
    margin: 0 8px 6px 1px;
}

.news-date-time {
    color: #486DAA;
}

select[name="TARIF"]:not(.active) {
    display: none;
}

input.def-btn {
    width: 100%;
}

button.def-btn:disabled {
    background-color: var(--reserved-accent-color) !important;
    cursor: not-allowed !important;
}





.custom-select-wrapper {
    position: relative;
    width: 100%;
    height: 46px;
    font-family: Arial, sans-serif;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    /* background: #007bff; */
    border: 1px solid rgba(236, 236, 236, 1);
    color: #757587;
    padding-left: 16px;
    height: 46px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    transition: box-shadow 0.3s;
}

.pressed {
    box-shadow: 0px 0px 3px 1px #ff8979a6;
    color: #38383f;
}
.input-div input:focus {
  box-shadow: 0px 0px 3px 1px #ff8979a6;
  color: #38383f;
  outline: none; 
}

.input-div input {
  transition: box-shadow 0.3s ease, color 0.3s ease;
}

.input-div input:focus {
  box-shadow: 0px 0px 3px 1px #ff8979a6;
  color: #38383f;
  outline: none;
}
.arrow-select {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    opacity: 0.8;
}

.arrow-select::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #33333378;
    border-bottom: 2px solid #33333378;
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.3s ease;
}

.custom-select.open .arrow-select::after {
    transform: translate(-50%, -30%) rotate(225deg);
}

.custom-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 115%;
    left: 0;
    right: 0;
    background: #ffffffea;
    border: 1px solid rgba(236, 236, 236, 0.5);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0px 0px 4px 0px #ff8979a6;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    z-index: 10;

}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
}

.custom-option {
    padding: 10px;
    font-size: 14px;
    color: #60606d;
    cursor: pointer;
    border-radius: 8px;
    padding-left: 12px;
    transition: background 0.2s;
}

.custom-option-text {
    font-size: 15px;
    color: #3b3b41;
    padding: 2px 2px 2px 8px;
    margin-bottom: 4px;
}

.custom-option-text:after {
    top: 34px;
    content: '';
    position: absolute;
    left: 10px;
    width: 95%;
    height: 1px;
    background-color: #7575872c;
}

.custom-option:hover {
    background: #f3f3f3;
}

.custom-option.selected {
    color: #38383f;
    background-color: #ff897954
}



