.offer-list {
    position: relative;
}

.offer-list .offer {
    width: 100%;
    /*height: 110px;*/
    /*position: relative;*/
    /*display: flex;*/
    
    /*overflow: hidden;*/
    margin-bottom: 15px;
    position: relative;

    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.offer-list .offer .offerWrapper {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 5px;

    background: linear-gradient(to bottom right, rgb(36, 75, 40), rgb(26, 52, 77));
    background: linear-gradient(to bottom right, rgb(145, 37, 103), #b97030);
    background: linear-gradient(to bottom right, rgb(33, 34, 37), #17415a);

    background: linear-gradient(to bottom right, rgb(20, 23, 37), #2f3238);
}

.offer-list .offer .reviewSlider {
    position: absolute;
    right: -140px;
    width: 150px;
    background-color: rgb(50, 139, 65);
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    height: 110px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px 10px 25px;
    box-sizing: border-box;
    transform: translateX(-160px);
    transition: 350ms;
    cursor: pointer;
    text-decoration: none;
}

.offer-list .offer:hover .reviewSlider {
    transform: translateX(0px);
}

.offer-list .offer .reviewSlider div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 3px;
}

.offer-list .offer .reviewSlider div span {
    top: 5px;
    text-align: center;
    color: white;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 7px;
}

.offer-list .offer .reviewSlider div .reviewsIcon {
    height: 50px;
}

.offer-list .offer .reviewSlider .arrow {
    position: absolute;
    right: 20px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.offer-list .offer .mainInfos {
    display: flex;
    position: relative;
    height: 110px;
    z-index: 2;
}

.offer-list .offer .logo {
    background: rgb(31, 31, 31);
    width: 235px;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.offer-list .offer .logo img {
    /*height: 100%;*/
    width: 100%;
    transition: 200ms;
}

.offer-list .offer .logo img:hover {
    transform: scale(1.05);
    cursor: pointer;
}


.offer-list .offer .wrapper {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.offer-list .offer .wrapper .buttonWrapper {
    display: flex;
    justify-content: space-between;
    padding-right: 25px;
}


.offer-list .offer .infos,
.offerDetails .bodyContainer .bonusInfos {
    height: 100%;
    display: flex;
    padding: 22px;
    box-sizing: border-box;
    justify-content: space-around;
    flex-grow: 1;
    color: white;
}

.offer-list .offer .infos p,
.offerDetails .bodyContainer .bonusInfos p {
    font-size: 34px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.685);
    color: gold;
    font-weight: bold;
    height: min-content;
    text-align: center;
    min-width: 102px;
}

.offer-list .offer .infos .description,
.offerDetails .bodyContainer .bonusInfos .description {
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: normal;
    text-shadow: none;
    color: white;
}



.offer-list .offer .detailsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0 auto 0;
    margin-right: 25px;
}


.offer-list .offer .detailsWrapper .raiting,
.offerDetails .bodyContainer .reviewSection .raiting {
    display: flex;
    width: max-content;
    align-items: center;
    margin-top: 10px;
}

.offerDetails .bodyContainer .reviewSection .raiting {
    margin-top: 0;
}

.offer-list .offer .detailsWrapper .raiting i,
.offerDetails .bodyContainer .reviewSection .raiting i {
    font-size: 15px;
}

.offer-list .offer .detailsWrapper .raiting .star,
.offerDetails .bodyContainer .reviewSection .raiting .star {
    color: gold;
    margin: 0 1px;
}

.offer-list .offer .detailsWrapper .raiting .lastStar,
.offerDetails .bodyContainer .reviewSection .raiting .lastStar {
    position: relative;
    color: gold;
    width: 18px;
    height: 16px;
    margin: 0 1px;
}

.offer-list .offer .detailsWrapper .raiting .lastStar .fa-star,
.offerDetails .bodyContainer .reviewSection .raiting .lastStar .fa-star {
    position: absolute;
    top: 0;
    left: 0;
}

.offer-list .offer .detailsWrapper .raiting .lastStar .fa-star.starGold,
.offerDetails .bodyContainer .reviewSection .raiting .lastStar .fa-star.starGold {
    overflow: hidden;
}

.offer-list .offer .detailsWrapper .raiting .lastStar .fa-star.starWhite,
.offerDetails .bodyContainer .reviewSection .raiting .lastStar .fa-star.starWhite {
    color: rgba(138, 138, 138, 0.733);
}

.offer-list .offer .detailsWrapper .raiting .label,
.offerDetails .bodyContainer .reviewSection .raiting .label {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}



.offer-list .offer .toggleDetails {
    cursor: pointer;
    color: white;
    display: inline-block;
    background-color: rgb(61, 61, 61);
    height: min-content;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 25px 15px 25px;
    border-radius: 5px;
    transition: 100ms;
    width: 79px;
}

.offer-list .offer .reviewLink {
    background-color: rgb(61, 61, 61);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 0 25px 0 25px;
    height: 43px;
    width: max-content;
    align-items: center;

    display: none;
}

.offerDetails .bodyContainer .reviewSection .reviewLink {
    background-color: rgb(61, 61, 61);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 25px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    text-align: center;
}

.offer-list .offer .reviewLink img {
    height: 28px;
    margin-left: 8px;
}

.offer-list .offer .toggleDetails:hover {
    background-color: rgb(68, 68, 68);
}

.offer-list .offer .toggleDetails i {
    position: relative;
    top: -3px;
    transform-origin: 50% 11px;
    margin-left: 5px;
    transition: 300ms;
}

.offer-list .offer.detailsActive .toggleDetails i {
    transform: rotate(180deg);
}

.offer-list .offer .playWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0 auto 0;
}

.offer-list .offer .reviewButton {
    color: rgba(255, 255, 255, 0.795);
    margin-top: 14px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    background-color: rgb(61, 61, 61);
    border-radius: 4px;
    padding: 4px 10px;
}

.offer-list .offer .playButton {
    cursor: pointer;
    color: white;
    display: inline-block;
    background-color: rgb(50, 139, 65);
    height: min-content;
    font-size: 25px;
    font-weight: 700;
    padding: 20px 30px 20px 30px;
    margin-top: 5px;
    
    transform: skew(-5deg);
    box-shadow: 6px 6px 2px rgba(0, 0, 0, 0.308);
    text-decoration: none;
    transition: 300ms;
    overflow: hidden;
    position: relative;

    animation: none;
}

.offer-list .offer.detailsActive .playButton {
    animation: buttonPulse 5s infinite;
    animation-delay: 4s;
}

  
.offer-list .offer .playButton::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.3;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.offer-list .offer .playButton:hover {
    box-shadow: 8px 8px 2px rgba(0, 0, 0, 0.308);
    transform: translate(-1px, -1px) skew(-5deg);
    background-color: rgb(37, 160, 197);
}

.offer-list .offer .playButton:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}





.offer-list .offer .popover {
    color: black;
}

.offer-list .offer .detailed-popover{
    display: inline-block;
    white-space: nowrap;
    transition: 500ms;
    opacity: 0;
    width: 0px;
}

.offer-list .offer.detailsActive .detailed-popover,
.offerDetails .bodyContainer .bonusInfos .detailed-popover {
    display: inline-block;
    opacity: 1;
    width: 15px;
    margin-left: 4px;
}

.offer-list .offer.detailsActive .detailed-popover.extraInfoDB,
.offerDetails .bodyContainer .bonusInfos .detailed-popover.extraInfoDB {
    width: 46px;
}

.offer-list .offer.detailsActive .detailed-popover.extraInfoB,
.offerDetails .bodyContainer .bonusInfos .detailed-popover.extraInfoB {
    width: 33px;
}

.offer-list .offer .detailed-popover .info,
.offerDetails .bodyContainer .bonusInfos .detailed-popover .info {
    font-size: 10px;
    font-weight: 500;
    color: rgb(185, 185, 185);
    margin-right: 3px;
}

.offer-list .offer .detailed-popover i,
.offerDetails .bodyContainer .bonusInfos .detailed-popover i {
    color: rgb(105, 166, 213);
}

@keyframes buttonPulse {
    0% {
        transform: skew(-5deg) scale(1);
    }
    
    8% {
        transform: skew(-5deg) scale(1.05);
    }

    16% {
        transform: skew(-5deg) scale(1);
    }
}


.offer-list .offer .details {
    padding: 40px;
    color: white;
    border-top: 1px solid #464b50;
    padding-top: 30px;
    margin-top: 20px;
}

.offer-list .offer .details .topInfos {
    display: flex;
    text-align: left;
}

.offer-list .offer .details .topInfos .title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 17px;
}

.offer-list .offer .details .topInfos .casinoLicence {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #464b50;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 85px;
}

.offer-list .offer .details .topInfos .casinoLicence .maxBetPart {
    border-bottom: 1px solid #464b50;
    padding: 0 5px 15px 5px;
    margin-bottom: 15px;
}

.offer-list .offer .details .topInfos .casinoLicence .maxBetPart p,
.offerDetails .bodyContainer .licenceAndMaxBetSection .maxBetPart p {
    font-size: 32px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.685);
    color: gold;
    font-weight: bold;
    height: min-content;
    text-align: center;
}

.offer-list .offer .details .topInfos .casinoLicence .maxBetPart p .description,
.offerDetails .bodyContainer .licenceAndMaxBetSection .maxBetPart p .description {
    display: block;
    font-size: 17px;
    font-weight: 600;
    text-shadow: none;
    color: white;
}

.offer-list .offer .details .topInfos .casinoLicence .licencePart p,
.offerDetails .bodyContainer .licenceAndMaxBetSection .licencePart p {
    margin-bottom: 10px;
}

.offer-list .offer .details .topInfos .casinoLicence .licencePart img,
.offerDetails .bodyContainer .licenceAndMaxBetSection .licencePart img {
    width: 60px;
}

.offer-list .offer .details .topInfos .casinoInfos {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #464b50;
    flex-grow: 1;
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList,
.offerDetails .bodyContainer .featuresSection .fetureList {
    font-size: 14px;
    max-width: 375px;
    width: max-content;
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p,
.offerDetails .bodyContainer .featuresSection .fetureList p {
    line-height: 17px;
    margin-bottom: 9px;
    position: relative;
    padding-left: 25px;
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p a:visited,
.offerDetails .bodyContainer .featuresSection .fetureList a:visited {
    color: #aad0ff;
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p a,
.offerDetails .bodyContainer .featuresSection .fetureList a {
    color: #aad0ff;
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p span,
.offerDetails .bodyContainer .featuresSection .fetureList p span {
    position: absolute;
    left: 0;
    font-size: 14px;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p i.fa-gift,
.offerDetails .bodyContainer .featuresSection .fetureList p i.fa-gift {
    color: rgb(226, 198, 38);
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p i.fa-plus,
.offerDetails .bodyContainer .featuresSection .fetureList p i.fa-plus {
    color: rgb(120, 205, 50);
}

.offer-list .offer .details .topInfos .casinoInfos .fetureList p i.fa-minus,
.offerDetails .bodyContainer .featuresSection .fetureList p i.fa-minus {
    color: #f5594e;
}

.offer-list .offer .details .topInfos .languages {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #464b50;
}


.offer-list .offer .details .topInfos .languages .flagList,
.offerDetails .bodyContainer .languagesSection .flagList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
}

.offer-list .offer .details .topInfos .languages .flagList img,
.offerDetails .bodyContainer .languagesSection .flagList img {
    width: 36px;
    border-radius: 3px;
}

.offer-list .offer .details .topInfos .paymentProvider {
    /*max-width: 145px;*/
}

.offer-list .offer .details .topInfos .paymentProvider .providerList,
.offerDetails .bodyContainer .paymentProviderSection .providerList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.offer-list .offer .details .topInfos .paymentProvider .providerList img,
.offerDetails .bodyContainer .paymentProviderSection .providerList img {
    height: 30px;
    border-radius: 4px;
}

.offer-list .offer .details .gameProviders,
.offerDetails .bodyContainer .gameProviderSection .gameProviders {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #464b50;
}

.offer-list .offer .details .gameProviders img,
.offerDetails .bodyContainer .gameProviderSection .gameProviders img {
    /*height: 50px;*/
    height: 67px;
    /*margin: 25px 22px 0 0;*/
}


.offer-list .offer .details .bonusCalc {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #464b50;
}

.offer-list .offer .details .bonusCalc .title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 17px;
}

.offer-list .offer .details .bonusCalc .title .titleInfo {
    font-style: italic;
    font-weight: 300;
}

.offer-list .offer .details .bonusCalc .calcContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-list .offer .details .bonusCalc .calcContainer .flLabelInputBox {
    margin-top: 0;
    margin-bottom: 0;
    width: 250px;
}

.offer-list .offer .details .bonusCalc .calcContainer .resultBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-list .offer .details .bonusCalc .calcContainer .resultBox:last-child {
    margin-right: 25px;
}

.offer-list .offer .details .bonusCalc .calcContainer .resultBox .label {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

.offer-list .offer .details .bonusCalc .calcContainer .resultBox .value {
    font-size: 26px;
    font-weight: 500;
}

.offer-list .offer .details .bonusCalc .lowDepositAmountWarning {
    display: none;
    margin-top: 20px;
    font-weight: bold;
    color: rgb(255, 185, 81);
}

.offer-list .offer .details .bonusCalc .lowDepositAmountWarning.show {
    display: block;
}


.offerDetails .bodyContainer .bonusCalcSection {
    
}



.offerDetails .bodyContainer .bonusCalcSection .flLabelInputBox input {
    z-index: unset;
}

.offerDetails .bodyContainer .bonusCalcSection .flLabelInputBox .label {
    background-color: #191a1d;
    z-index: unset;
}

.offerDetails .bodyContainer .bonusCalcSection .lowDepositAmountWarning {
    display: none;
    margin-top: 15px;
    font-weight: bold;
    color: rgb(255, 185, 81);
}

.offerDetails .bodyContainer .bonusCalcSection .lowDepositAmountWarning.show {
    display: block;
}

.offerDetails .bodyContainer .bonusCalcSection .calcResults {
    margin-top: 35px;
}

.offerDetails .bodyContainer .bonusCalcSection .calcResults .line {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 8px;
    padding-right: 8px;
}

.offerDetails .bodyContainer .bonusCalcSection .calcResults .line:last-child {
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.offerDetails .bodyContainer .bonusCalcSection .calcResults .line span:nth-child(2) {
    float: right;
}





@media (max-width: 950px) {
    .offer-list .offer {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-list .offer .reviewSlider {
        display: none;
    }

    

    .offer-list .offer .mainInfos {
        flex-direction: column;
        height: auto;
    }

    .offer-list .offer .logo {
        display: flex;
        width: auto;
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
    }

    .offer-list .offer .logo img {
        width: 100%;
        overflow: hidden;
    }

    .offer-list .offer .infos,
    .offerDetails .bodyContainer .bonusInfos {
        height: auto;
        padding: 0;
        padding-bottom: 10px;
        justify-content: center;
        margin: 20px 20px 20px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offerDetails .bodyContainer .bonusInfos {
        margin: 0 0 20px 0;
        justify-content: space-evenly;
    }

    .offer-list .offer .infos p,
    .offerDetails .bodyContainer .bonusInfos p {
        font-size: 30px;
    }

    .offer-list .offer .infos span,
    .offerDetails .bodyContainer .bonusInfos span{
        font-size: 14px;
    }

    .offer-list .offer .mainInfos .wrapper {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .offer-list .offer .mainInfos .wrapper .buttonWrapper {
        /*justify-content: space-between;*/
        flex-direction: column;
        padding-left: 25px;
    }

    .offer-list .offer .reviewLink {
        display: flex;
    }

    .offer-list .offer .detailsWrapper {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-right: 0;
        margin-bottom: 15px;
        padding-top: 38px;
        position: relative;
    }

    .offer-list .offer .detailsWrapper .raiting {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }

    .offerDetails .bodyContainer .reviewSection .raiting {

    }


    .offer-list .offer .details .topInfos {
        flex-direction: column;
    }

    .offer-list .offer .details .topInfos > div {
        margin-right: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid #464b50;
        max-width: none !important;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .offer-list .offer .details .topInfos .languages .flagList,
    .offerDetails .bodyContainer .languagesSection .flagList {
        display: flex;
        flex-wrap: wrap;
    }

    .offer-list .offer .details .gameProviders,
    .offerDetails .bodyContainer .gameProviderSection .gameProviders {
        border-top: none;
        margin-top: 0;
        justify-content: center;
    }
    
    .offer-list .offer .details .gameProviders img,
    .offerDetails .bodyContainer .gameProviderSection .gameProviders img {
        /*height: 38px;
        margin: 15px 15px 0 0;*/
        height: 40px;
        margin: 7px 7px 0 0;
    }


    .offer-list .offer .details .topInfos .casinoLicence {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .offer-list .offer .details .topInfos .casinoLicence .maxBetPart,
    .offerDetails .bodyContainer .licenceAndMaxBetSection .maxBetPart {
        border-bottom: none;
    }
    
    .offer-list .offer .details .topInfos .casinoLicence .maxBetPart p .description,
    .offerDetails .bodyContainer .licenceAndMaxBetSection .maxBetPart p .description {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .offer-list .offer .details .topInfos .casinoLicence .licencePart,
    .offerDetails .bodyContainer .licenceAndMaxBetSection .licencePart {
        border-left: 1px solid #464b50;
        padding: 0 0 0 30px;
        margin: 0 0 0 30px;
    }

    .offer-list .offer .details .topInfos .casinoInfos .fetureList,
    .offerDetails .bodyContainer .featuresSection .fetureList {
        width: auto;
    }

    .offer-list .offer .details .topInfos .paymentProvider .providerList,
    .offerDetails .bodyContainer .paymentProviderSection .providerList {
        display: flex;
        flex-wrap: wrap;
    }

    .offer-list .offer .details .topInfos .paymentProvider .providerList img,
    .offerDetails .bodyContainer .paymentProviderSection .providerList img {
        /*margin: 0 10px 10px 0;*/
    }
}

@media (max-width: 500px) {
    .offer-list .offer .playButton {
        font-size: 23px;
        letter-spacing: 1px;
        padding: 15px 25px 15px 25px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .offer-list .offer .toggleDetails {
        padding: 12px 22px 12px 22px;
        margin-right: 0;
    }
}



.ribbon {
    position: absolute;
    top: -7px;
    left: -7px;
    z-index: 50;
    color: white;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.ribbon span {
    background: linear-gradient(#c4374e,#a73145);
    line-height: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 11.5px;
    text-align: center;
    width: 120px;
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    left: -26px;
    top: 24px;
    box-shadow: 3px 3px 10px -6px rgb(0, 0, 0);
}

.ribbon span i {
    color: gold;
}

.ribbon span::after {
    content: "";
    position: absolute;
    top: 98%;
    left: 0;
    border-width: 6px;
    border-style: solid;
    border-color: #b92a5585 transparent transparent #b92a5585;
}

.ribbon span::before {
    content: "";
    position: absolute;
    top: 98%;
    right: 0;
    border-width: 6px;
    border-style: solid;
    border-color: #b92a5585 #b92a5585 transparent transparent;
}          

.ribbon.new span {
    background: linear-gradient(rgb(30, 160, 62),rgb(28, 134, 46));
}

.ribbon.new span::after {
    border-color: rgba(49, 158, 67, 0.479) transparent transparent rgba(49, 158, 67, 0.479);
}

.ribbon.new span::before {
    border-color: rgba(49, 158, 67, 0.479) rgba(49, 158, 67, 0.479) transparent transparent;
}

.ribbon.twoRow span {
    letter-spacing: 1px;
    line-height: 14px;
    padding: 2px 0;
    left: -34px;
    top: 23px;
    width: 146px;
}



/* offer Details section slider */
.offerDetails {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #191a1d;
    z-index: 101;
    flex-direction: column;

    transform: translateX(100%);
    transition: 350ms;
}

.offerDetails.enable {
    display: flex;
}

.offerDetails.show {
    transform: translateX(0);
}

.offerDetails .head {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    height: 60px;
    color: white;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #31313b;
    flex-shrink: 0;
}

.offerDetails .head i {
    font-size: 30px;
    margin-right: 30px;
}

.offerDetails .head .casinoName {
    font-size: 20px;
}

.offerDetails .bodyContainer {
    color: white;
    padding: 20px;
    padding-bottom: 130px;
    box-sizing: border-box;
    flex-grow: 1;
    overflow-y: scroll;
}

.offerDetails .bodyContainer .sectionTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.offerDetails .bodyContainer .casinoLogo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 6px;
}


.offerDetails .bodyContainer .reviewSection {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.offerDetails .bodyContainer .reviewSection .raitingWrapper {
    display: flex;
    margin-bottom: 15px;
}

.offerDetails .bodyContainer .reviewSection .raitingWrapper .title {
    font-size: 17px;
    font-weight: 600;
    margin-right: 10px;
}

.offerDetails .bodyContainer .featuresSection {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offerDetails .bodyContainer .licenceAndMaxBetSection {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.offerDetails .bodyContainer .licenceAndMaxBetSection .title {
    font-size: 17px;
    font-weight: 600;
}

.offerDetails .bodyContainer .licenceAndMaxBetSection .licencePart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;

    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
}

.offerDetails .bodyContainer .maxBetPart {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
}

.offerDetails .bodyContainer .paymentProviderSection,
.offerDetails .bodyContainer .languagesSection,
.offerDetails .bodyContainer .gameProviderSection {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}


.offerDetails .bottomContainer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background-color: #191a1d;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    box-sizing: border-box;
    padding: 0 25px;

    mask-image: linear-gradient(to top, black 62%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 62%, transparent 100%);
}

.offerDetails .bottomContainer .playButton {
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.offerDetails.show .bottomContainer .playButton {
    animation: buttonPulse 5s infinite;
    animation-delay: 4s;
}