<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root{
    --background-color : linear-gradient(-180deg, #262223 0%, #0c0c0e 100%);
    --background-active : linear-gradient(0deg, #9e7c06, #252018);
    --text-color : #fff;
}
.flex{
    display: flex;
}
.flex-row{
    flex-direction: row;
}
.flex-col{
    flex-direction: column;
}
.mb-15{
    margin-bottom: 15px;
}

.mb-30{
    margin-bottom: 30px;
}

.w-200{
    width: 200px !important;
    height: 120px !important;
}

.w-100{
    width: 100%;
}

.tab {
    display: flex;
    /* background-color: #cccccc; */
    width: 300px;
    text-align: center;
    margin-right: 15px;
}
.tab li a {
    display: block;
    background-color: inherit;
    color: #ffffff !important;
    padding: 22px 16px;
    width: 100%;
    border: none !important;
    border-radius: unset !important;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}
.tab li a{
    background: var(--background-color);
    color: var(--text-color);
	height: 65px;
}
.tab li:hover a{
	background: url(../img/header-bg.jpg) no-repeat top;
}
.tab li.active a{
	background: url(../img/header-bg.jpg) no-repeat top;
}

.tabcontent-container {
    width: calc(100% - 200px - 10px);
    padding: 10px;
    display: block;
    margin-left: 10px;
    background-color: #cccccc;
}
.tabBonus{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    background-color: #c2c2c2;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    margin-left: 12px;
}



.promo-image{
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.promo-image{
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.my-promo-description{
    margin-left: 5px;
    color: #000000;
    font-weight: 600;
    min-width: 200px;
}
.promo-description{
    margin-left: 12px;
    color: #000000;
    font-weight: 600;
    min-width: 520px;
}
.promo-btn-info{
    margin-right: 12px;
    background-color: #D9D9D9;
    border: 0px;
    padding: 8px 5px;
    color: #000000;
    font-weight: 600;
}
.promo-btn-claim{
    margin-right: 12px;
    background: var(--background-color);
    color: var(--text-color);
	padding: 8px 5px;
    text-decoration: none;
    font-weight: 600;
}
.promo-btn-claim:hover{
    background: var(--background-active);
    color: var(--text-color);
    text-decoration: none;
}
.modal-dialog-centered{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-content{
    width: 100%;
}
@media (min-width: 576px){
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
}

.modal-promo .modal-header:after{
	border-bottom: unset;
}
.modal-promo .modal-content{
    background-color: unset;
    border: unset;
}
.modal-promo .modal-header{
	background: url(../img/header-bg.jpg) no-repeat top;
	height: 65px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}
.modal-promo .modal-title{
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
}
.modal-promo .modal-body{
    background-color: #fff;
    color: #000000;
}
.modal-promo .modal-footer{
    background-color: #e9ecef;
    padding: 1rem;
}</pre></body></html>