.declinedQuote {
    visibility: hidden;
    opacity: 0;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    transition-duration: 400ms;
    -webkit-transition-duration: 400ms;
    display: flex !important;
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.declinedQuote__close svg {
    fill: transparent;
    opacity: .8;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: stroke .1s;
}

.declinedQuote__bg {
    background: #1e1e1e;
    opacity: .87;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.47,0,0.74,0.71);
}

.declinedQuote__bg, .declinedQuote__block {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
}

.declinedQuote__block {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    top: 0;
    text-align: center;
    max-width: 548px;
    width: 100%;
    border-radius: 5px;
    z-index: 1010;
    background: #fff;
    padding: 35px;
    margin: 0 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 15px rgba(0,0,0,.5);
    box-shadow: 0 3px 15px rgba(0,0,0,.5);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.declinedQuote.open {
    opacity: 1;
    visibility: visible;
}

.declinedQuote.open .declinedQuote__block {
    top: 20%;
}

.declinedQuote.open .declinedQuote__bg {
    transition-timing-function: cubic-bezier(0.22,0.61,0.36,1);
}


.declinedQuote__text {
    font-size: 17px;
    line-height: 1.35;
    margin: 0;
}

.declinedQuote__close {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #555;
    cursor: pointer;
    height: 44px;
    margin: 0;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    z-index: 10;
}

.declinedQuote__image {
    width: 100px;
    height: auto;
}

.declinedQuoteText__link {
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
    text-decoration: underline;
}

.declinedQuoteText__link:hover {
    text-decoration: none;
}

.declinedQuoteText_mod {
    margin-top: 14px;
}

.declinedQuote_text_nmt8 {
    margin-top: -8px;
}

.declinedQuote_text_mt14 {
    margin-top: 14px;
}

.declinedQuote_text_mb15 {
    margin-bottom: 15px;
}

.declinedQuote_text_mod {
    margin-bottom: 27px;
    margin-top: -10px;
}

@media (max-width: 575.98px) {
    .declinedQuote.open .declinedQuote__block {
        top: 15%;
    }
}

@media (max-height: 430px) {
    .declinedQuote.open .declinedQuote__block {
        top: 5%;
    }
    .declinedQuote__block {
        padding: 25px 15px;
    }
}

@media (max-width: 575.98px) and (min-height: 319.98px) {
    .declinedQuote__image {
        width: 75px;
    }
    .declinedQuote__text {
        font-size: 15px;
        line-height: 1.35;
    }
    .declinedQuote__block {
        padding: 35px 15px;
    }
}

@media only screen and (min-width: 320px) and (max-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2){
    .declinedQuote__image {
        width: 70px;
    }
}