@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
    url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    height: 100%;
	min-height: 100vh;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--common-body-bg);
    color: #fff;
/*     min-height: 100%; */
	min-height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.container {
    max-width: 1350px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

/* LAYOUT  START*/
.OktZDpqIQUQzF {
    display: flex;
    flex-flow: column nowrap;
    /* gap: 30px; */
    padding-top: 40px;
}

.UkfTHj5Ag {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 24px;
}

.KyHmFdkkgb3hVA8 {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 25px;
}

/* LAYOUT  END*/

/*Button styles START*/
.button {
    cursor: pointer;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 42px;
    border-radius: 50px;
    text-align: center;
    /* transition: all 0.3s ease-in-out; */
    box-shadow: 0px 4px 2px 0px rgba(254, 250, 231, 1) inset;
}

.button.LyzbD2YKe {
    background: linear-gradient(360deg, var(--button-blue-bg-1) 45%, var(--button-blue-bg-2) 55%);
    color: var(--button-blue-text);
}
.button.LyzbD2YKe:hover {
    background: var(--button-blue-hover-bg);
    color: var(--button-blue-hover-text);
    box-shadow: 0px 4px 10px 0px var(--button-blue-hover-shadow) inset;
}

.button.WniwyIFlhlC {
    background: linear-gradient(360deg, var(--header-button-bg-grad-1) 45%, var(--header-button-bg-grad-2) 55%);
    color: var(--header-button-text-color);
}
.button.WniwyIFlhlC:hover {
    background: var(--header-button-hover-bg-color);
    color: var(--header-button-hover-text-color);
}

.button.dJxtHKfC4StlA {
    background: linear-gradient(360deg, var(--button-orange-bg-1) 45%, var(--button-orange-bg-2) 55%);
    color: var(--button-orange-text);
}
.button.dJxtHKfC4StlA:hover {
    background: linear-gradient(360deg, var(--button-orange-hover-bg-1) 45%, var(--button-orange-hover-bg-2) 55%);
    color: var(--button-orange-hover-text);
    box-shadow: 0px 4px 10px 0px var(--button-orange-hover-shadow) inset;
}
/*Button styles END*/

/* BREADCRUMBS START*/
.WYqofR6VQS {
    margin: 0 auto 33px;
    font-size: 15px;
    color: var(--common-breadcrumbs-text);
}

.WYqofR6VQS nav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.WYqofR6VQS a {
    position: relative;
}

.WYqofR6VQS a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -2px;
    background: var(--common-breadcrumbs-hover-line);
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.WYqofR6VQS a:hover:after {
    transform: scaleX(1);
    transform-origin: center left;
}

.WYqofR6VQS .QLxjxkHt9wncBf9 {
    margin: 0 10px;
    color: var(--common-breadcrumbs-text);
}

.WYqofR6VQS .current {
    color: var(--common-breadcrumbs-current);
}
/* BREADCRUMBS END*/

/* HEADER  START*/
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--header-bg-grad-1) 0%, var(--header-bg-grad-2) 49%, var(--header-bg-grad-3) 100%);
    border-bottom: 1px solid var(--header-border-color);
    margin-bottom: 50px;
}

.WqCpqFRQuS3J {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.DzqKMMuJuPwL2H {
    display: flex;
    gap: 30px;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.DzqKMMuJuPwL2H a {
    color: var(--header-link-color);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.DzqKMMuJuPwL2H a:hover {
    color: var(--header-link-hover-color);
}

.wUkPMj2nhQPZtL {
    position: relative;
}

.RZbJYPiY631 {
    display: none;
    width: max-content;
    position: absolute;
    top: 150%;
    left: -10%;
    padding: 15px;
    border-radius: 25px;
    background: var(--header-dropdown-bg-color);
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s;
}

/* .wUkPMj2nhQPZtL.open  */

.wUkPMj2nhQPZtL.open .RZbJYPiY631 {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.RZbJYPiY631 li a {
    color: var(--header-dropdown-link-color);
    text-decoration: none;
    font-size: 16px;
}

.hkQwO3MWAhWXS {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
}

.EwTWsCY9xoG {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.EwTWsCY9xoG span {
    width: 22px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}
.EwTWsCY9xoG span:nth-child(2) {
    width: 17px;
}

.mobileMenu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 30px 20px;
    flex-direction: column;
    gap: 30px;
    border-radius: 0 0 20px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
    background: linear-gradient(180deg, #083EBC 49%, #042981 100%);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobileMenu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobileMenuList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobileMenuList a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.mobileMenu .button {
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

.mobileLangFlags {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.mobileLangFlags img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
}


/* HEADER  END*/

/* MAIN BANNER START*/
.cTVAXvAXqyf1aY {
    height: 360px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cTVAXvAXqyf1aY .KLQXcOPyxo5SU {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 35px 29px;
    position: relative;
    z-index: 2;
}

.cTVAXvAXqyf1aY img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.cTVAXvAXqyf1aY h1,
.cTVAXvAXqyf1aY h2 {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--main-banner-title-color);
}

.cTVAXvAXqyf1aY p {
    font-size: 27px;
    font-weight: 600;
    color: var(--main-banner-text-color);
}

.cIeJcOwxeldygza {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}
/* MAIN BANNER END*/


/* INFO CONTENT START*/
.contentInfo {
    padding: 60px 0;
}

.infoBlock {
    margin-bottom: 50px;
    line-height: 1.6;
}

.infoBlock h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.withImage {
    display: flex;
    gap: 30px;
    align-items: center;
}

.infoImage {
    width: 360px;
    height: 220px;
    background: #244000;
    border-radius: 12px;
}

/* INFO CONTENT END*/

/*ERROR PAGE START*/
.XImMeviW1NgKj5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
    gap: 33px;
    margin: 0 auto;
    height: 580px;
}

.OQWdKIS3j7j {
    font-size: 30px;
    font-weight: 600;
    color: var(--404-text-color);
    text-transform: uppercase;
}

.XImMeviW1NgKj5 img {
    max-width: 523px;
    height: auto;
    width: 100%;
}

/*ERROR PAGE END*/

/*About Us page START*/
.OktZDpqIQUQzF.PPpvP038l {
    padding-bottom: 105px;
}

/*Style for banner on bottom of page*/
.PPpvP038l .cTVAXvAXqyf1aY {
    border-radius: 50px;
    border: 6px solid #F2B90D;
}

.PPpvP038l .cTVAXvAXqyf1aY h2 {
    font-size: 59px;
}

.PPpvP038l .cTVAXvAXqyf1aY .button {
    font-size: 23px;
}
/*About Us page END*/


/*Blog page START*/


/*Blog page END*/

.overlap {
	display: none;
}

html[amp] .overlap {
	height: 100%;
	margin-left: auto;
	display: flex;
	align-items: center;
}

@media (max-width: 1366px) {
    /* .cTVAXvAXqyf1aY {
        margin: 0 20px;
        width: auto;
    } */
}

@media (max-width: 1024px) {

    .button {
        font-size: 16px;
        padding: 11px 32px;
    }

    .EwTWsCY9xoG {
        display: flex;
    }

    .hkQwO3MWAhWXS {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #083EBC 49%, #042981 100%);
        z-index: 99;
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-end;
        gap: 30px;
        border-radius: 0 0 20px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .hkQwO3MWAhWXS.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
    }

    .hkQwO3MWAhWXS .DzqKMMuJuPwL2H {
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
    }

    .hkQwO3MWAhWXS .button {
        width: 100%;
        max-width: 200px;
        margin-top: 10px;
    }

    .hkQwO3MWAhWXS .wvudgjGbZt0FYIM {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        padding-bottom: 10px;
        position: static;
    }

    .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .vwlkEiPhoDJR6We {
        display: none;
    }

    .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 {
        display: flex !important;
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        gap: 15px;
        margin: 0;
        padding: 0;
    }

    .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 {
        padding: 0;
        border-radius: 50%;
    }

    .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9.VjyadiOxOVC44 {
        border: 1.5px solid #F2B90D;
    }

    .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        object-fit: cover;
        margin: 0;
    }

    .cTVAXvAXqyf1aY h2 {
        font-size: 30px;
    }

    .cTVAXvAXqyf1aY p {
        font-size: 20px;
    }

    .PPpvP038l .cTVAXvAXqyf1aY h2 {
        font-size: 35px;
    }

    .PPpvP038l .cTVAXvAXqyf1aY .button {
        font-size: 17px;
    }
	
	.overlap {
		position: fixed;
		background: #180B09;
		top: 0;
		right: 0;
		width: 100%;
		height: auto;
		transform: translateX(100%);
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
		overflow: hidden;
		display: block;
		padding: 85px 10px 15px;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.overlap.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 30px;
	}
}

@media (max-width: 768px) {
    .WYqofR6VQS {
        font-size: 12px;
    }

    .cTVAXvAXqyf1aY h2 {
        font-size: 25px;
    }

    .cTVAXvAXqyf1aY p {
        font-size: 16px;
    }

    .button {
        box-shadow: 0px 2px 2px 0px rgba(254, 250, 231, 1) inset;
    }
}

@media (max-width: 568px) {
    .cTVAXvAXqyf1aY {
        justify-content: flex-start;
        height: 420px;
        border-radius: 5px;
    }
}



/* new styles */
.bJOqgOGPXJtS.column-layout {
    flex-direction: column;
}

.bJOqgOGPXJtS.column-layout .nhPfVmFe2ozUV,
.bJOqgOGPXJtS.column-layout .uQgNNae3gZE {
    width: 100%;
}

.bJOqgOGPXJtS.column-layout .nhPfVmFe2ozUV {
    flex-direction: column;
}

.bJOqgOGPXJtS.column-layout .nLnPJZBvAcFLw {
        height: auto;
        width: 100%;
}

  .bJOqgOGPXJtS.column-layout  .nLnPJZBvAcFLw .PevixCgu31je {
        height: auto;
        width: 90%;
    }
    
    .bJOqgOGPXJtS.column-layout .nLnPJZBvAcFLw .swiper-wrapper {
        flex-direction: row;
    }
    
    .bJOqgOGPXJtS.column-layout .slotG-prev {
        top: 50% !important;
        left: -4px;
        transform: translateY(-50%) rotate(-90deg);
        margin-right: auto;
    }
    
      .bJOqgOGPXJtS.column-layout  .slotG-next {
        top: 50% !important;
        right: -4px;
        transform: translateY(-50%) rotate(90deg);
        margin-left: auto;
    }
    
    .bJOqgOGPXJtS.column-layout  iframe {
        height: 500px;
    }
    
    .yiTEeiMhv .yqysTyRc9VsS img {
        height: 442px;
    }
    section.container.swYjPw5qA {
     flex: 1; 
}

@media (max-width: 728px) {
.bJOqgOGPXJtS.column-layout iframe {
    height: 400px;
}
.nLnPJZBvAcFLw {
    height: auto;
}

.yiTEeiMhv .yqysTyRc9VsS img {
    height: 400px;
}
}

@media (max-width: 500px) {
    .yiTEeiMhv .yqysTyRc9VsS img {
        height: 250px;
    }
   .bJOqgOGPXJtS.column-layout iframe {
    height: 250px;
}
}

.wvudgjGbZt0FYIM .YbswWmgad62 {
border: 1px solid #B1C497;
border-radius: 15px;
left: -5px;
width: 50px;
}

.wvudgjGbZt0FYIM .YbswWmgad62 img {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border: 1.5px solid #F2B90D;
}

.wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 {
    padding: 5px;
}

.wvudgjGbZt0FYIM .vwlkEiPhoDJR6We .vwlkEiPhoDJR6We::after {
    transition: transform 0.3s ease;
}

.wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 a {
    height: 38px;
}

.wvudgjGbZt0FYIM.open .vwlkEiPhoDJR6We::after {
    transform: rotate(180deg); 
}

.wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9:hover {
    background-color: transparent;
}

.dBECrATvhC select.tieuGzFN3tyl0:focus {
    border-radius: 25px!important;
}

.dBECrATvhC select.tieuGzFN3tyl0:focus:hover {
    border-radius: 25px 25px 0 0 !important;
    -webkit-border-radius: 25px 25px 0 0 !important;
}

.yiTEeiMhv .yqysTyRc9VsS img {
    object-fit: contain;
}

/* .yqysTyRc9VsS > img:has(+ .GTTknamEuwMa) {
    object-fit: cover;
} */

html {
    scroll-padding-top: 100px;
}


/* AMP Carousel Styles for multiple slides */
#top-slots-carousel .swiper-slide {
    width: calc(100% / 1.5);
    min-width: calc(100% / 1.5);
    flex-shrink: 0;
    padding-right: 20px;
    box-sizing: border-box;
}

@media (min-width: 580px) {
    #top-slots-carousel .swiper-slide {
        width: calc(100% / 1.9);
        min-width: calc(100% / 1.9);
    }
}

@media (min-width: 768px) {
    #top-slots-carousel .swiper-slide {
        width: calc(100% / 2);
        min-width: calc(100% / 2);
    }
}

@media (min-width: 1024px) {
    #top-slots-carousel .swiper-slide {
        width: calc(100% / 3.4);
        min-width: calc(100% / 3.4);
    }
}

@media (min-width: 1366px) {
    #top-slots-carousel .swiper-slide {
        width: calc(100% / 4);
        min-width: calc(100% / 4);
    }
}

@media (min-width: 1440px) {
    #top-slots-carousel .swiper-slide {
        width: calc(100% / 4.8);
        min-width: calc(100% / 4.8);
    }
}

/* AMP Dropdown Menu Styles */
html[amp] .wUkPMj2nhQPZtL {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

html[amp] .wUkPMj2nhQPZtL .IvZnWMlE2Fy {
    cursor: pointer;
    display: block;
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

html[amp] .wUkPMj2nhQPZtL .RZbJYPiY631 {
    display: none;
    width: max-content;
    position: absolute;
    top: 25px;
    left: -10%;
    padding: 15px;
    border-radius: 25px;
    background: #ECF2FF;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s;
    z-index: 1;
    list-style: none;
    margin: 0;
    min-width: 200px;
}

html[amp] .wUkPMj2nhQPZtL.open .RZbJYPiY631 {
    display: flex;
    opacity: 1;
    visibility: visible;
}

html[amp] .wUkPMj2nhQPZtL.open .IvZnWMlE2Fy {
    transform: rotate(180deg);
}

html[amp] .RZbJYPiY631 li {
    list-style: none;
    margin: 0;
}

html[amp] .RZbJYPiY631 li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 5px 0;
}

html[amp] .RZbJYPiY631 li a:hover {
    color: #083EBC;
}

/* Mobile styles for AMP sidebar */
html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL > a {
    flex: 1;
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL .RZbJYPiY631 {
	position: absolute;
    width: 100%;
    margin-top: 10px;
    left: unset;
    right: 0px;
    top: 50%;
	background: #083ebc;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL .RZbJYPiY631 li a {
    color: #fff;
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL .IvZnWMlE2Fy {
    position: static;
    transform: none;
    margin-left: auto;
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL.open .IvZnWMlE2Fy {
    transform: rotate(180deg);
}

/* AMP Burger Menu Styles */
html[amp] .overlap {
    background: linear-gradient(180deg, #083EBC 49%, #042981 100%);
    padding: 30px 20px;
    max-height: 100vh;
    overflow-y: auto;
}

html[amp] .overlap .hkQwO3MWAhWXS {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
	justify-content: flex-start;
    gap: 30px;
    width: 100%;
	height: -webkit-fill-available;
}

html[amp] .overlap .hkQwO3MWAhWXS .DzqKMMuJuPwL2H {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: fit-content;
    list-style: none;
    padding: 0;
    margin: 0;
}

html[amp] .overlap .hkQwO3MWAhWXS .DzqKMMuJuPwL2H li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

html[amp] .overlap .hkQwO3MWAhWXS .DzqKMMuJuPwL2H li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
	width: -webkit-fill-available;
}

 
html[amp] .overlap .hkQwO3MWAhWXS .IvZnWMlE2Fy .i-amphtml-fill-content {
	width: 16px;
    height: 12px;
    min-height: unset;
    min-width: unset;
    margin: unset;
    left: unset;
    right: 0;
    top: 20%;
}

.i-amphtml-layout-size-defined .i-amphtml-fill-content {
    min-width: none;
    width: 16px
    left: auto;
    height: 16px;
    min-width: 16px;
}


html[amp] .overlap .hkQwO3MWAhWXS .button {
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

/* AMP Language Selector Styles */
html[amp] .wvudgjGbZt0FYIM {
    position: relative;
    display: inline-block;
}

html[amp] .wvudgjGbZt0FYIM .vwlkEiPhoDJR6We {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
}

html[amp] .wvudgjGbZt0FYIM .vwlkEiPhoDJR6We img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

html[amp] .wvudgjGbZt0FYIM .YbswWmgad62 {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #ECF2FF;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    min-width: 150px;
    flex-direction: column;
    gap: 8px;
}

html[amp] .wvudgjGbZt0FYIM.open .YbswWmgad62 {
    display: flex;
}

html[amp] .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 {
    list-style: none;
    margin: 0;
}

html[amp] .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 a {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.2s;
}

html[amp] .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 a:hover {
    background: rgba(8, 62, 188, 0.1);
}

html[amp] .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* AMP Language Selector in Sidebar */
html[amp] .overlap .hkQwO3MWAhWXS .wvudgjGbZt0FYIM {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 10px;
    position: static;
    width: 100%;
    justify-content: flex-end;
}

html[amp] .overlap .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .vwlkEiPhoDJR6We {
    display: none;
}

html[amp] .overlap .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 {
    display: flex !important;
    position: static;
    width: auto;
    background: transparent;
    box-shadow: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    flex-direction: row;
    min-width: auto;
}

html[amp] .overlap .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 {
    padding: 0;
    border-radius: 50%;
}

html[amp] .overlap .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9.VjyadiOxOVC44 {
    border: 1.5px solid #F2B90D;
    padding: 2px;
}

html[amp] .overlap .hkQwO3MWAhWXS .wvudgjGbZt0FYIM .YbswWmgad62 .fvecyv3R9 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    margin: 0;
}

html[amp] .amp-sidebar-mask {
	z-index: 99;
}

.i-amphtml-sidebar-mask[i-amphtml-sidebar-opened] {
    animation: none;
    display: none;
}
@media (max-width: 1024px) {
   html[amp] .overlap .hkQwO3MWAhWXS {
        position: absolute;
	   transform: none;
        opacity: 1;
        visibility: visible;
    }
	html[amp] .overlap {
		height: 100%;
	}
	html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL .RZbJYPiY631 {
		position: static;
	}
	html[amp] .overlap .hkQwO3MWAhWXS .DzqKMMuJuPwL2H li {
		flex-direction: column;
		margin-right: 20px;
	}
	amp-img.IvZnWMlE2Fy {
    position: absolute!important;
    top: 5px;
    right: 0px;
}
}

@media (min-width: 1024px) {
html[amp] .wUkPMj2nhQPZtL:hover .RZbJYPiY631 {
    display: flex;
    opacity: 1;
    visibility: visible;
}
}

html[amp] .aNYektjGkp {
	width: 261px;
}

html[amp] .wUkPMj2nhQPZtL .IvZnWMlE2Fy {
	transform: rotate(-90deg);
}

html[amp] .wUkPMj2nhQPZtL:hover .IvZnWMlE2Fy {
	transform: rotate(90deg);
} 

.IvZnWMlE2Fy  {
    width: 16px;
    left: auto;
    height: 16px;
    min-width: 16px;
}

.IvZnWMlE2Fy .i-amphtml-layout-size-defined .i-amphtml-fill-content {
    position: absolute;
    top: 0;
    left: auto!important;
    width: 16px!important;
    min-width: 16px!important;
    max-width: 16px!important;
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL .IvZnWMlE2Fy {
	transform: rotate(-90deg);
}

html[amp] .overlap .hkQwO3MWAhWXS .wUkPMj2nhQPZtL.open .IvZnWMlE2Fy {
    transform: rotate(90deg);
}

.DzqKMMuJuPwL2H > li {
	padding-bottom: 5px;
}
