:root {
    --colorPrimary: #191e24;
    --colorSecondary: #191e24;
    --colorBtn: #ffffff;
}


.modal-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
}

.modal-left-part h4 {
    font-weight: 600;
    color: #191e24;
}

.modal-left-part ul li img {
    width: 45px;
    filter: invert(49%) sepia(49%) saturate(475%) hue-rotate(353deg) brightness(96%) contrast(94%);
}

#deals-modal {
    padding-right: 0px !important;
}

.modal-left-part h6 {
    color: #191e24;
    font-weight: 600;
    font-size: 14px;
}

#deals-modal .modal-footer {
    background-color: var(--colorPrimary);
    color: var(--colorBtn);
    padding: 0px;
    text-align: center;
}

.modal-right-part img {
    width: 140px;
    margin-bottom: 20px;
}

#deals-modal .form-group {
    margin-bottom: 1rem;
}

/* .modal-right-part .btn-success:hover,
.modal-right-part .btn-success:focus,
.modal-right-part .btn-success:active {
    background: #191e24 !important;
    border-color: #191e24 !important;
    color: #ffffff !important;
} */

.modal-right-part .sidebar-form .form-control {
    min-height: 50px;
    padding: 0.75rem;
    border: 2px solid rgba(120, 130, 140, 0.13);
}

.modal-right-part .sidebar-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.modal-right-part .sidebar-form .btn {
    min-height: 50px;
    font-weight: 600;
}

.effetGradient,
.effetGradient:hover {
    text-shadow: 0px 3px 6px var(--colorPrimary);
    background-color: var(--colorSecondary);
    background: linear-gradient(-45deg, #c3802f, #dfa359, #c3802f, #dfa359);
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    color: var(--colorBtn);
    border: none;
}

.effectScale {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.effectScale:hover {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}

.intl-tel-input,
.iti {
    width: 100%;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

#deals-modal .modal-footer a {
    display: block;
    width: 100%;
    color: var(--colorBtn);
    font-weight: 500;
    font-size: 20px;
    padding: 12px 15px;
    text-decoration: none;
}

.modal-header .close {
    padding: 0rem 0rem;
    margin: -1.6rem -1rem -1rem -1.5rem;
    background: none;
    font-size: 40px;
    position: relative;
    border: none;
}

.modal-header h4 {
    font-size: 18px;
    width: calc(100% - 10px);
}

.modal-header h4 img {
    width: 190px;
}

#deals-modal .modal-header {
    justify-content: center;
}

.modal-left-part {
    background-color: #dcaa6c17;
    height: 100%;
    box-shadow: 4px 4px 15px rgb(12 35 34 / 17%);
}

.modal-left-part ul {
    padding-left: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 0px;
}

.modal-left-part ul li {
    list-style: none;
}

@media only screen and (min-width: 992px) {
    .modal-dialog {
        max-width: 550px;
        border-radius: 0px;
    }
}

/* deals-modal */

@media only screen and (max-width:991px) {
    .modal-left-part ul li {
        display: inline-block;
        margin: 0px 5px;
    }

    .modal-left-part ul li img {
        width: 50px;
    }

    .modal-right-part h5 {
        font-size: 20px;
        line-height: 28px;
        margin: 12px 0 12px;
    }

    .modal-left-part h6 {
        font-size: 16px;
        margin-bottom: 0px !important;
    }

    .modal-right-part img {
        margin-top: 20px;
    }
}

@media only screen and (max-width:767px) {
    .spl-modal .modal-title {
        font-size: 19px;
    }
}

@media only screen and (max-width:474px) {
    .modal-left-part ul li {
        margin: 0px 4px;
    }

    .modal-left-part ul li img {
        width: 45px;
    }

    .modal-left-part h6 {
        font-size: 10px;
        font-weight: 600;
    }

    #deals-modal .modal-header {
        padding-left: 0px;
        padding-right: 12px;
    }

    .modal-header h4 {
        font-size: 11px;
    }
}

/* deals-modal */