.modal_new {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.8);*/
    background: #2C3E50BD;
    animation: fadeIn .3s both;
    z-index: 999;
}

.modal-wrapper {
    position: relative;
    overflow: auto;
    width: 750px;
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 30px);
    padding: 20px 0 5px;
    border-radius: 11px;
    background-color: #FFF;
    animation: slideFromTop .3s both;
}

.modal_new[aria-hidden="true"] {
    animation-name: fadeOut;
    /* animation-direction: reverse; */
}

.modal_new[aria-hidden="true"] .modal-wrapper {
    animation-name: slideToBottom;
    /* animation-direction: reverse; */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideFromTop {
    from { transform: translateY(-50px); }
    to { transform: translateY(0px); }
}

@keyframes slideToBottom {
    from { transform: translateY(0px); }
    to {  transform: translateY(50px); }
}

.modal_new .close {
    position: absolute;
    right: 0;
    bottom: 104%;
    cursor: pointer;
}


.modal-type-3 {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translate3d(0,0,0);
    background-color: #fff;
    padding: 0 0 20px;
    height: 100vh;
    overflow: hidden;
}

.modal-type-3 .head {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #edf7ff;
    color: var(--primary-1);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 15px 15px 20px;
}

.top_mediterranee {
    background-image: url("../images/top/CROISIERE-MEDITERRANEE.webp");
    background-size: cover;
}

.top_grecques {
    background-image: url("../images/top/CROISIERE-ILES-GRECQUES.webp");
    background-size: cover;
}

.top_fjords {
    background-image: url("../images/top/CROISIERE-EUROPE-DU-NORD.webp");
    background-size: cover;
}

.top_caraibes {
    background-image: url("../images/top/CROISIERE-CARAIBES.webp");
    background-size: cover;
}

.top_flv {
    background-image: url("../images/top/CROISIERE-FLUVIALE.webp");
    background-size: cover;
}

.top_dubai {
    background-image: url("../images/top/CROISIERE-DUBAI-MOYEN-ORIENT.webp");
    background-size: cover;
}

.top_msc {
    background-image: url("../images/top/MSC-CROISIERES.webp");
    background-size: cover;
}

.top_costa {
    background-image: url("../images/top/COSTA-CROISIERES.webp");
    background-size: cover;
}

.top_royal {
    background-image: url("../images/top/ROYAL-CARIBBEAN.webp");
    background-size: cover;
}

.top_norwegian {
    background-image: url("../images/top/NORWEGIAN-CRUISE-LINE.webp");
    background-size: cover;
}

.top_ponant {
    background-image: url("../images/top/PONANT.webp");
    background-size: cover;
}

.top_croisi {
    background-image: url("../images/top/CROISIEUROPE.webp");
    background-size: cover;
}

.list_top_desti > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 10px 15px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.3em;
    width: calc(50% - 3px);
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
}

.modal-type-3 .body-modal h3 {
    color: #38a7f8;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: left;
    margin: 15px 0;
    text-transform: uppercase;
}

.modal-type-3 .list_top_desti {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.modal-type-3 .list_top_desti + h3 {
    margin-bottom: 5px;
}

.modal-type-3 .type_filter {
    font-size: 1.1rem;
    color: var(--primary-1);
    font-weight: 700;
    padding: 12px 10px;
    margin: 2px 5px 2px 0;
    border-bottom: 1px solid #bfbfbf;
}

.modal-type-3 .type_filter.under {
    padding-left: 24px;
    font-weight: 600;
}

.modal-type-3 .body-modal {
    overflow: auto;
}

.modal-type-3 .filter_date {
    border: 1px solid #B7C8D9;
    border-radius: 4px;
    width: calc(33.33% - 10px);
    text-align: center;
    padding: 10px 2px;
}

.modal-type-3 .list_month {
    display: flex;
    flex-wrap: wrap;
}

.modal-type-3 .year {
    color: #38A7F8;
    text-align: center;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 15px 0 2px;
}

.modal-type-3 .filter_company img {
    max-height: 50px;
    max-width: 116px;
}


.close_modal {
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    z-index: 1;
}

.close_modal img {
    width: 32px;
}

body.blocked, html.blocked {
    overflow: hidden;
}




























