

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');

.marathon-banner {
    width: 100%;
    max-width: 425px;
    background: #FFD61E;
    border-radius: 10px;
    box-shadow: 0px 6px 0px #C7A717;
    position: fixed;
    bottom: 100px;
    left: 22px;
    z-index: 1000;
    cursor: pointer;
}

.marathon-banner__content {
    padding: 0 40px 9px 27px;
    display: flex;
    align-items: center;
}

.marathon-banner__image {
    margin-right: 19px;
}

.marathon-banner__text {
    padding: 11px 0 25px 0;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: #000000;
}

.marathon-banner__cta {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 8px 22px;
    background: #9B2224;
    border-radius: 5px;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #FFFFFF;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    cursor: pointer;
}

.marathon-banner__close-btn {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 22px;
    line-height: 1;
    transition: .3s;
    cursor: pointer;
}

@media (min-width: 769px) {
    .marathon-banner__cta:hover {
        background: #821d1f;
    }
    
    .marathon-banner__close-btn:hover {
    	opacity: .6;
    }

    .gc-main-content.with-left-menu .marathon-banner{
        left: 92px;
    }
}

@media (max-width: 400px) {
    .marathon-banner {
        width: auto;
        max-width: none;
        bottom: 85px;
        left: 10px;
        right: 10px;
    }

    .marathon-banner__content {
        padding: 0 20px;
    }

    .marathon-banner__text {
        padding: 7px 0 18px 0;
        font-size: 14px;
    }

    .marathon-banner__image {
        max-width: 60px;
    }

    .marathon-banner__cta {
        bottom: -20px;
    }
}
