.cookies-infobar {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    padding: 20px 15px;
    border-radius: 20px;
    border: 1px solid #ffc49c;
    background: rgba(255, 103, 0, .2)
}

.cookies-infobar__wrap {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px
}

.cookies-infobar.cookies-infobar_accepted {
    display: none
}

.cookies-infobar_wrapper {
    max-width: 850px;
    width: 100%
}

.cookies-infobar_wrapper h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.cookies-infobar_wrapper p {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.cookies-infobar_buttons {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.cookies-infobar_btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px 24px;
    color: #1c1c1c;
    text-align: center;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 10px;
    background: #ff6700;
    -webkit-box-shadow: 0 0 4px 0 #ffb888;
    box-shadow: 0 0 4px 0 #ffb888;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.cookies-infobar_btn span {
    position: relative;
    z-index: 2
}

.cookies-infobar_btn:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(198, 88, 88, .3);
    box-shadow: 0 0 20px 0 rgba(198, 88, 88, .3);
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, .6);
    padding: 5px 0
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.dingodraws-header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 350px
}

.dingodraws-header__top span {
    font-family: Kodchasan, sans-serif;
    color: #f33;
    font-size: clamp(.5rem, .347rem + .68vw, .875rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.dingodraws-header__top p {
    font-family: Kodchasan, sans-serif;
    color: #fff;
    font-size: clamp(.5rem, .347rem + .68vw, .875rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.dingodraws-header__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.dingodraws-header__logo {
    display: block;
    width: 239px
}

.dingodraws-header__menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.dingodraws-header__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px
}

.dingodraws-header__link {
    -webkit-transition: all var(--transition);
    -o-transition: all var(--transition);
    transition: all var(--transition);
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.dingodraws-header__link:hover {
    text-shadow: 0 0 4px #f07825
}

.top__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px
}

.burger {
    position: relative;
    z-index: 1000;
    display: none;
    padding: 0;
    width: 24px;
    height: 20px;
    cursor: pointer
}

.burger__line {
    position: absolute;
    right: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.burger::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: top .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: top .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out, top .2s ease-in-out;
    transition: transform .2s ease-in-out, top .2s ease-in-out;
    transition: transform .2s ease-in-out, top .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.burger::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: bottom .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: bottom .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out, bottom .2s ease-in-out;
    transition: transform .2s ease-in-out, bottom .2s ease-in-out;
    transition: transform .2s ease-in-out, bottom .2s ease-in-out, -webkit-transform .2s ease-in-out
}

.burger--active .burger__line {
    opacity: 0
}

.burger--active::before {
    top: 50%;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.burger--active::after {
    top: 50%;
    bottom: auto;
    width: 100%;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.no-webp .dingodraws-hero {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, .4))), url(../img/hero.jpg) #d3d3d3 50%/cover no-repeat;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .4) 100%), url(../img/hero.jpg) #d3d3d3 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .4) 100%), url(../img/hero.jpg) #d3d3d3 50%/cover no-repeat
}

.dingodraws-hero {
    padding: 93px 0 0
}

.dingodraws-hero__info {
    padding: 20px 0;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 13px
}

.dingodraws-hero__headline {
    margin-bottom: 24px;
    color: #ffc49c;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #1c1c1c;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(1.5rem, 1.091rem + 1.82vw, 2.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase
}

.dingodraws-hero__text {
    color: #f2f2f2;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-hero__wrapper {
    padding: 10px 0;
    background: rgba(0, 0, 0, .6)
}

.dingodraws-hero__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto
}

.dingodraws-hero__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px
}

.dingodraws-hero__item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.dingodraws-hero__item span {
    color: #fff;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: clamp(.625rem, .472rem + .68vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.no-webp .casinolicence-content {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 34, 255, .3)), to(rgba(0, 34, 255, .3))), url(../img/main.png) #d3d3d3 50%/cover no-repeat;
    background: -o-linear-gradient(bottom, rgba(0, 34, 255, .3) 0, rgba(0, 34, 255, .3) 100%), url(../img/main.png) #d3d3d3 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(0, 34, 255, .3) 0, rgba(0, 34, 255, .3) 100%), url(../img/main.png) #d3d3d3 50%/cover no-repeat
}

.casinolicence-content {
    padding-bottom: 50px
}

.casinolicence-hero {
    padding: 90px 0 0
}

.casinolicence-hero__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.casinolicence-hero__info {
    max-width: 820px
}

.casinolicence-hero__pic {
    width: 295px;
    height: 295px;
    aspect-ratio: 1/1;
    grid-area: pic
}

.casinolicence-hero__title {
    margin-bottom: 13px;
    color: #fff;
    font-size: clamp(1.625rem, 1.408rem + 1.09vw, 2.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    grid-area: title
}

.casinolicence-hero__title--hide {
    display: none;
    margin-bottom: 13px;
    color: #fff;
    font-size: clamp(1.625rem, 1.408rem + 1.09vw, 2.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    grid-area: title
}

.casinolicence-hero__text {
    margin-bottom: 16px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.casinolicence-hero__list {
    gap: 16px;
    grid-area: list
}

.casinolicence-hero__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: 100px;
    background: #eee
}

.casinolicence-hero__item img {
    width: 24px;
    height: 24px
}

.casinolicence-hero__item span {
    display: block;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    font-size: clamp(.5rem, .37rem + .65vw, .875rem)
}

.casinolicence-faqs__title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.casinolicence-date {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px
}

.casinolicence-date span {
    color: #fff;
    font-size: clamp(.625rem, .582rem + .22vw, .75rem);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase
}

.casinolicence-date strong {
    color: #fff;
    font-size: clamp(.625rem, .582rem + .22vw, .75rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.casinolicence-faq {
    border: 1px solid rgba(255, 255, 255, .5);
    background: #e8e8e8
}

.casinolicence-faq__top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    padding: 20px
}

.casinolicence-faq__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

.casinolicence-faq__question p {
    color: #464646;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.casinolicence-faq__icon {
    width: 20px;
    height: 20px
}

.casinolicence-faq__chevron {
    width: 24px;
    height: 24px
}

.casinolicence-faq__bottom {
    padding: 10px 20px 20px 20px
}

.casinolicence-faq__bottom p {
    color: #464646;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.casinolicence-faq:not(:last-child) {
    margin-bottom: 20px
}

.casinolicence-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    min-height: 132px;
    background: #eee;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .1)
}

.casinolicence-item__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
    padding: 16px 32px;
    background: #1c1c1c
}

.casinolicence-item__logo img {
    max-width: 200px;
    max-height: 93px;
    -o-object-fit: contain;
    object-fit: contain
}

.casinolicence-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 386px;
    width: 100%;
    padding: 16px 24px
}

.casinolicence-item__info h2 {
    font-size: clamp(.625rem, .538rem + .43vw, .875rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    color: #737373
}

.casinolicence-item__info h2 span {
    display: block;
    font-size: clamp(.625rem, .408rem + 1.09vw, 1.25rem);
    font-weight: 700;
    color: #02f
}

.casinolicence-item__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    max-width: 166px;
    width: 100%;
    padding: 16px 24px
}

.casinolicence-item__rate p {
    color: #464646;
    font-size: clamp(.875rem, .832rem + .22vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.casinolicence-item__rate img {
    width: 24px
}

.casinolicence-item__rate span {
    color: #464646;
    font-size: clamp(.875rem, .527rem + 1.74vw, 1.875rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

.casinolicence-item__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    padding: 6px 24px
}

.casinolicence-item__nav a {
    display: block;
    margin-bottom: 10px;
    width: 224px;
    padding: 15px;
    color: #fff;
    font-size: clamp(.75rem, .663rem + .43vw, 1rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    border: 1px solid #eb697a;
    background: #ea2e46;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.casinolicence-item__nav a:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.casinolicence-item__grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px
}

.casinolicence-item__grid p {
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 5px 10px;
    border-radius: 3px;
    background: #323232
}

.casinolicence-item:not(:last-child) {
    margin-bottom: 16px
}

.right {
    margin-left: auto
}

.rate--mobile {
    display: none
}

.casinolicence-marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.casinolicence-marquee-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.casinolicence-marquee-item img {
    width: 18px;
    height: 18px
}

.casinolicence-marquee-item span {
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.casinolicence-marquee__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.casinolicence-list {
    padding-bottom: 40px
}

@-webkit-keyframes scroll {
    from {
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }

    to {
        -webkit-transform: translateX(-55%);
        transform: translateX(-55%)
    }
}

@keyframes scroll {
    from {
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }

    to {
        -webkit-transform: translateX(-55%);
        transform: translateX(-55%)
    }
}

.dingodraws-about {
    padding: 80px 0;
    background: rgba(255, 103, 0, .2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.dingodraws-about__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px
}

.dingodraws-about__info h2 {
    margin-bottom: 24px;
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(1.25rem, 1.045rem + .91vw, 1.75rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase
}

.dingodraws-about__info p {
    color: #fff;
    font-size: clamp(.875rem, .824rem + .23vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.dingodraws-about__info p:not(:last-child) {
    margin-bottom: 15px
}

.dingodraws-contact {
    padding: 80px 0
}

.dingodraws-contact__wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;

}

.dingodraws-contact__title {
    margin-bottom: 20px;
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(1.25rem, 1.045rem + .91vw, 1.75rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase
}

.dingodraws-contact__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.dingodraws-contact__input {
    display: block;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    outline: 0;
    color: #000;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__input::-webkit-input-placeholder {
    color: #7d7c7c;
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__input::-moz-placeholder {
    color: #7d7c7c;
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__input:-ms-input-placeholder {
    color: #7d7c7c;
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__input::-ms-input-placeholder {
    color: #7d7c7c;
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__input::placeholder {
    color: #7d7c7c;
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__textarea {
    display: block;
    margin-bottom: 24px;
    min-height: 100px;
    resize: none;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    outline: 0;
    color: #000;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__textarea::-webkit-input-placeholder {
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__textarea::-moz-placeholder {
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__textarea:-ms-input-placeholder {
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__textarea::-ms-input-placeholder {
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__textarea::placeholder {
    color: #b8b8b8;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-contact__btn {
    display: inline-block;
    color: #fff;
    padding: 10px 10px;
    width: 220px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: #ff6700;
    -webkit-box-shadow: 0 0 4px 0 #ffb888;
    box-shadow: 0 0 4px 0 #ffb888;
    color: #1c1c1c;
    text-align: center;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.dingodraws-contact__btn:hover {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff
}

.dingodraws-faqs {
    padding: 80px 0
}

.dingodraws-faqs__title {
    margin-bottom: 24px;
    text-align: left
}

.dingodraws-faqs__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.dingodraws-faqs__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
    padding: 24px;
    border-radius: 10px;
    background: rgba(255, 196, 156, .1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.dingodraws-faqs__item h3 {
    margin-bottom: 24px;
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%
}

.dingodraws-faqs__item p {
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.dingodraws-descr {
    padding: 80px 0
}

.dingodraws-descr__wrap {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ff6700
}

.dingodraws-descr__wrap p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.dingodraws-descr__wrap p:not(:last-child) {
    margin-bottom: 15px
}

.no-webp .chateaut-disclaimer {
    background-image: url(../img/disclaimer.png)
}

.chateaut-disclaimer {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover
}

.chateaut-disclaimer__wrapper {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d0464a;
    background: rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.chateaut-disclaimer__title {
    margin-bottom: 24px
}

.chateaut-disclaimer__text {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.chateaut-disclaimer__text:not(:last-child) {
    margin-bottom: 15px
}

.dingodraws-list {
    padding: 20px 0 40px
}

.dingodraws-list__date {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    background: rgba(19, 7, 7, .5)
}

.dingodraws-list__date p {
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(.625rem, .574rem + .23vw, .75rem);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase
}

.dingodraws-list__date span {
    color: #ffc49c;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(.625rem, .574rem + .23vw, .75rem);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase
}

.dingodraws-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    min-height: 132px;
    padding-right: 32px;
    border-radius: 10px;
    background: #f3f3f3;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.dingodraws-item__bottom,
.dingodraws-item__top {
    display: none
}

.dingodraws-item__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 25px;
    width: 250px;
    min-height: 132px;
    border-radius: 10px;
    background: #2e2e2e
}

.dingodraws-item__logo img {
    display: block;
    max-width: 200px;
    max-height: 80px;
    -o-object-fit: contain;
    object-fit: contain
}

.dingodraws-item__info {
    max-width: 356px;
    padding: 0 16px
}

.dingodraws-item__title {
    margin-bottom: 5px;
    color: #2e2e2e;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(.75rem, .597rem + .68vw, 1.125rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.dingodraws-item__subtitle {
    margin-bottom: 16px;
    color: #2e2e2e;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(.625rem, .523rem + .45vw, .875rem);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase
}

.dingodraws-item__nav {
    width: 250px;
    margin-left: auto;
    overflow: hidden
}

.dingodraws-item__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    -webkit-animation: marquee 15s infinite;
    animation: marquee 15s infinite
}

.dingodraws-item__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 6px;
    background: #fff
}

.dingodraws-item:not(:last-child) {
    margin-bottom: 24px
}

.vip-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.rating-score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-right: 5px
}

.rating-score span {
    color: #2e2e2e;
    text-align: center;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(.75rem, .699rem + .23vw, .875rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.rating-score img {
    width: 15px;
    height: 15px
}

.rating-bar {
    width: 100%;
    height: 10px;
    background: #333;
    border-radius: 100px;
    overflow: hidden;
    position: relative
}

.rating-fill {
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: #ffe479;
    -webkit-animation: fillRating 3.5s ease-in-out infinite;
    animation: fillRating 3.5s ease-in-out infinite
}

.button {
    display: block;
    margin-bottom: 12px;
    padding: 10px 24px;
    border-radius: 10px;
    background: #ff6700;
    -webkit-box-shadow: 0 0 4px 0 #ffb888;
    box-shadow: 0 0 4px 0 #ffb888;
    color: #1c1c1c;
    text-align: center;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(.75rem, .648rem + .45vw, 1rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
}

.button__glare {
    opacity: .8;
    position: absolute;
    top: -100px;
    left: -100px;
    display: block;
    background: #fff;
    width: 40px;
    height: 300px;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation-delay: 50ms;
    animation-delay: 50ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: slide;
    animation-name: slide;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.button:hover {
    background: #1c1c1c;
    color: #ff6700
}

.hide {
    display: none
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: translateX(0) rotate(45deg);
        transform: translateX(0) rotate(45deg)
    }

    100%,
    30% {
        -webkit-transform: translateX(550px) rotate(45deg);
        transform: translateX(550px) rotate(45deg)
    }
}

@keyframes slide {
    0% {
        -webkit-transform: translateX(0) rotate(45deg);
        transform: translateX(0) rotate(45deg)
    }

    100%,
    30% {
        -webkit-transform: translateX(550px) rotate(45deg);
        transform: translateX(550px) rotate(45deg)
    }
}

@-webkit-keyframes fillRating {
    0% {
        width: 0%
    }

    80% {
        width: 99%
    }

    100% {
        width: 99%
    }
}

@keyframes fillRating {
    0% {
        width: 0%
    }

    80% {
        width: 99%
    }

    100% {
        width: 99%
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.dingodraws-footer {
    padding: 40px 0;
    background: #0a0a0a;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.dingodraws-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.dingodraws-footer__disclaimer {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #ffc49c;
    background: rgba(255, 103, 0, .2)
}

.dingodraws-footer__disclaimer p {
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-footer__images {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.dingodraws-footer__address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    color: #fff
}

.dingodraws-footer__address h3 {
    color: #fff;
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(1rem, .898rem + .45vw, 1.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

.dingodraws-footer__address p {
    font-size: clamp(.875rem, .824rem + .23vw, 1rem);
    font-family: Kodchasan, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-footer__address a {
    color: #fff;
    font-size: clamp(.875rem, .824rem + .23vw, 1rem);
    font-family: Kodchasan, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-footer__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px
}

.dingodraws-footer__list li:first-of-type {
    color: #f33;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(1.25rem, .739rem + 2.27vw, 2.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 130%
}

.dingodraws-footer__list a {
    color: #fff;
    font-family: Kodchasan, sans-serif;
    font-size: clamp(1rem, .898rem + .45vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.dingodraws-footer__text {
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.dingodraws-footer a {
    -webkit-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in
}

.dingodraws-footer a:hover {
    opacity: .6
}

@media screen and (max-width:1000px) {
    .casinolicence-hero__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media (max-width:1000px) {
    .dingodraws-list__date {
        background: 0 0
    }

    .dingodraws-item {
        max-width: 550px;
        margin: 0 auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
        padding: 0
    }

    .dingodraws-item:not(:last-child) {
        margin-bottom: 10px
    }

    .dingodraws-item__top {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 9px
    }

    .dingodraws-item__col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 8px 8px 0 8px
    }

    .dingodraws-item__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 8px 8px;
        width: 100%;
        overflow: hidden
    }

    .dingodraws-item__logo {
        width: 100%;
        min-height: 100%;
        padding: 25px 8px
    }

    .dingodraws-item__title {
        margin-bottom: 2px
    }

    .dingodraws-item__subtitle {
        margin-bottom: 8px
    }

    .dingodraws-item__info {
        max-width: 100%;
        padding: 0
    }

    .dingodraws-item__nav {
        width: 100%;
        margin-left: 0
    }

    .dingodraws-item__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px
    }

    .button {
        margin-bottom: 0
    }

    .vip-rating {
        width: 100%;
        margin-bottom: 16px
    }

    .hide {
        display: block;
        width: 12px;
        height: 12px
    }

    .rating-score img {
        display: none
    }
}

@media screen and (max-width:900px) {
    .nav {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 100;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: hidden;
        padding: 150px 30px 50px;
        width: 380px;
        height: 100vh;
        background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#242424)), #fff;
        background: -o-linear-gradient(top, #000 0, #242424 100%), #fff;
        background: linear-gradient(180deg, #000 0, #242424 100%), #fff;
        visibility: hidden;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
        transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
        -o-transition: transform .2s ease-in-out, visibility .2s ease-in-out;
        transition: transform .2s ease-in-out, visibility .2s ease-in-out;
        transition: transform .2s ease-in-out, visibility .2s ease-in-out, -webkit-transform .2s ease-in-out
    }

    .nav--visible {
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .header__container {
        gap: 12px
    }

    .dingodraws-header__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px
    }

    .dingodraws-header__list {
        position: relative;
        z-index: 5;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 100%;
        gap: 20px
    }

    .dingodraws-header__item {
        width: 100%;
        text-align: left
    }

    .dingodraws-header__link {
        padding-bottom: 0;
        font-size: 20px;
        color: #fff;
        text-align: left
    }

    .dingodraws-header__link::before {
        display: none;
        opacity: 0
    }

    .burger {
        display: block;
        margin-left: auto
    }

    .casinolicence-item {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        max-width: 550px;
        margin: auto
    }

    .casinolicence-item__logo {
        max-width: 100%
    }

    .casinolicence-item__info {
        padding: 16px 8px;
        max-width: 100%;
        border-bottom: 1px solid #1c1c1c
    }

    .casinolicence-item__info h2 {
        margin-bottom: 16px
    }

    .casinolicence-item__rate {
        padding: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .casinolicence-item__rate img {
        width: 18px
    }

    .casinolicence-item__nav {
        padding: 12px 8px 8px;
        -ms-grid-column-span: 2;
        grid-column: span 2;
        max-width: 100%;
        overflow: hidden
    }

    .casinolicence-item__nav a {
        padding: 8px
    }

    .casinolicence-item__grid {
        overflow: hidden;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 200%;
        -webkit-animation: scroll 10s linear infinite;
        animation: scroll 10s linear infinite
    }

    .casinolicence-item__grid p {
        padding: 5px 10px;
        min-width: 55px
    }

    .casinolicence-item .right {
        -ms-grid-column-span: 2;
        grid-column: span 2;
        gap: 4px;
        width: 100%
    }

    .casinolicence-item .rate--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .casinolicence-item .casinolicence-item__marquee--descktop {
        display: none
    }

    .casinolicence-item:not(:last-child) {
        margin-bottom: 10px
    }

    .right {
        margin-left: auto;
        margin: auto
    }

    .right .casinolicence-item__rate {
        display: none
    }

    .casinolicence-date {
        margin-bottom: 10px
    }

    .casinolicence-item__marquee--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
        padding: 8px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, .5);
        background: rgba(0, 0, 0, .7)
    }

    .dingodraws-faqs__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%
    }

    .dingodraws-footer {
        padding: 30px 0
    }

    .dingodraws-footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px
    }

    .dingodraws-footer__images {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px
    }

    .dingodraws-footer__address {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .dingodraws-footer__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 16px
    }
}

@media screen and (max-width:767px) {
    .dingodraws-hero__list {
        row-gap: 12px;
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px
    }

    .casinolicence-hero {
        padding: 101px 0 16px
    }

    .casinolicence-hero__row {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto 15px auto;
        grid-template-areas: "pic list" "title title";
        gap: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .casinolicence-hero__text {
        display: none
    }

    .casinolicence-hero__pic {
        grid-area: pic
    }

    .casinolicence-hero__list {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        grid-area: list
    }

    .casinolicence-hero__title {
        display: none
    }

    .casinolicence-hero__title--hide {
        display: block
    }

    .casinolicence-faq__icon {
        display: none
    }

    .dingodraws-about {
        padding: 40px 0
    }

    .dingodraws-about__grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 16px
    }

    .dingodraws-contact {
        padding: 40px 0
    }

    .dingodraws-contact__title {
        margin-bottom: 20px
    }

    .dingodraws-contact__btn {
        width: 100%
    }

    .dingodraws-faqs {
        padding: 40px 0
    }

    .dingodraws-faqs__headline {
        margin-bottom: 16px
    }

    .dingodraws-descr {
        padding: 40px 0
    }

    .chateaut-disclaimer {
        padding: 40px 0
    }

    .casinolicence-hero__pic {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }

    .casinolicence-hero__title {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3
    }

    .casinolicence-hero__title--hide {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3
    }

    .casinolicence-hero__list {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }
}

@media screen and (max-width:767px) {
    .casinolicence-hero__pic {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }

    .casinolicence-hero__list {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }
}

@media screen and (max-width:600px) {
    .casinolicence-hero__pic {
        width: 150px;
        height: 150px;
        aspect-ratio: 1/1
    }

    .casinolicence-hero__list {
        gap: 4px
    }

    .casinolicence-hero__item {
        padding: 2px 12px
    }

    .casinolicence-hero__item picture {
        width: 16px;
        height: 16px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .casinolicence-hero__item img {
        width: 16px;
        height: 16px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .casinolicence-content {
        padding-bottom: 16px
    }
}

@media screen and (max-width:500px) {
    .dingodraws-hero {
        padding: 68px 0 0
    }

    .dingodraws-hero__headline {
        margin-bottom: 0
    }

    .dingodraws-hero__text {
        display: none
    }

    .button {
        padding: 8px
    }

    .dingodraws-item__logo img {
        max-width: 140px;
        max-height: 60px
    }
}

@media screen and (max-width:350px) {
    .dingodraws-hero {
        padding: 100px 0 0
    }

    .dingodraws-hero__info {
        padding-bottom: 10px
    }
}

@media screen and (width <=1000px) {
    .cookies-infobar__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px
    }

    .cookies-infobar_wrapper {
        max-width: 100%
    }
}

@media screen and (width <=767px) {
    .cookies-infobar_buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5px
    }

    .cookies-infobar {
        left: 2px;
        right: 2px;
        margin: auto;
        padding: 14px;
        max-width: 99%
    }

    .dingodraws-header__logo {
        width: 150px
    }

    .nav {
        width: 100%
    }
}

.webp .dingodraws-hero {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, .4))), url(../img/hero.webp) #d3d3d3 50%/cover no-repeat;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .4) 100%), url(../img/hero.webp) #d3d3d3 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 0, rgba(0, 0, 0, .4) 100%), url(../img/hero.webp) #d3d3d3 50%/cover no-repeat
}

.webp .casinolicence-content {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 34, 255, .3)), to(rgba(0, 34, 255, .3))), url(../img/main.webp) #d3d3d3 50%/cover no-repeat;
    background: -o-linear-gradient(bottom, rgba(0, 34, 255, .3) 0, rgba(0, 34, 255, .3) 100%), url(../img/main.webp) #d3d3d3 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(0, 34, 255, .3) 0, rgba(0, 34, 255, .3) 100%), url(../img/main.webp) #d3d3d3 50%/cover no-repeat
}

.webp .chateaut-disclaimer {
    background-image: url(../img/disclaimer.webp)

}

.dingodraws-contact__success {
  margin-top: 10px;
  color: #0C9100;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s ease;
}
