/**
*** Main style, dark theme
**/
.mss-container {
    background: #21292E;
    border: 3px solid #A2C64D;
    color: #fff;
    text-align: center;
    padding: 45px 135px;
    margin-bottom: 30px;
}

.mss-container .panel {
    display: none;
    background-color: #21292E;
    box-shadow: none;
}
.mss-container .panel.show {
    display: block;
}

.mss-container .title{
    margin-bottom: 45px;
    font-size: 28px;
    line-height: 33px;
    height: 80px;
    overflow: hidden;
}

.mss-container .title h3, .mss-container .title h4 {
    margin-bottom: 0;
    font-size: 36px;
    line-height: 42px;
}

.mss-container .title p {
    margin-bottom: 0;
}

.mss-container .panel-result .title{
    margin-left: -20px;
    margin-right: -20px;
    height: auto;
}

.mss-container .choice-itm {
    background: #2D3B47;
    border: 3px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%), 0px 0px 7px rgb(0 0 0 / 25%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 21px;
    padding: 15px;
    cursor: pointer;
}

.mss-container .choice-itm::before{
    content: "";
    position: absolute;
    top: -75%;
    right: -75%;
    height: 150%;
    width: 150%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.145) 0%, rgba(255, 255, 255, 0.24) 8.09%, rgba(255, 255, 255, 0.22) 17.19%, rgba(255, 255, 255, 0.12) 35.42%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(138deg);
}

.mss-container .choice-itm .img-wrap img{
    width: 120px;
}

.mss-container .choice-itm p {
    margin-bottom: 0;
}

.mss-container .choice-itm.selected {
    background: #B76100;
    border-color: #FF9700;
}

.mss-container .buttons {
    margin-top: 40px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.mss-container .btn-mss {
    width: 160px;
    height: 45px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    background: #5D9ACE;
    -o-box-shadow: 2px 2px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 23px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
    -webkit-box-shadow: 2px 2px 5px rgb(0 0 0 / 50%), inset 0 1px rgb(255 255 255 / 30%), inset 0 23px rgb(255 255 255 / 20%), inset 0 10px 20px rgb(255 255 255 / 25%), inset 0 -15px 30px rgb(0 0 0 / 30%);
    -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 23px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
    box-shadow: 2px 2px 5px rgb(0 0 0 / 50%), inset 0 1px rgb(255 255 255 / 30%), inset 0 23px rgb(255 255 255 / 25%), inset 0 10px 20px rgb(255 255 255 / 25%), inset 0 -15px 30px rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    border: none;
    margin: 0 20px;
    cursor: pointer;
}

.mss-container .btn-mss.inactive{
    background: #CCCCCC;
}

.mss-container .btn-mss.active{
    background: #A2C64D;
}

.mss-container .btn-mss .lds-facebook {
    -webkit-transform:scale(0.5);
    -webkit-transform-origin:top left;
    -moz-transform:scale(0.5);
    -moz-transform-origin:top left;
    -ms-transform:scale(0.5);
    -ms-transform-origin:top left;
    -o-transform:scale(0.5);
    -o-transform-origin:top left;
    transform:scale(0.5);
    transform-origin:top left;
    width: 40px;
    height: 40px;
}

.mss-container .btn-mss .lds-facebook div {
    background-color: #fff;
}

.mss-container .row {
    display: flex;
}

.mss-container .col-4 {
    max-width: calc(33.33%);
    flex: 0 0 calc(33.33%);
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.mss-container .rs-games-box .col-4 {
    padding: 0;
    max-width: calc(33.33% - 25px);
    flex: 0 0 calc(33.33% - 25px);
}
.mss-container .rs-games-box .col-4.rs-col-0 {
    order: 1;
    max-width: calc(33.33% + 50px);
    flex: 0 0 calc(33.33% + 50px);
}
.mss-container .rs-games-box .col-4.rs-col-1 {
    order: 0;
}
.mss-container .rs-games-box .col-4.rs-col-2 {
    order: 2;
}

.mss-container .panel-result .title h3, .mss-container .panel-result .title h4 {
    color: #A2C64D;
}

.mss-container .rs-game {
    background: #2D3B47;
    border: 3px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 0px 7px rgb(0 0 0 / 25%);
    border-radius: 5px;
    margin-top: 40px;
    position: relative;
}
.mss-container .rs-game .game-content{
    position: relative;
    overflow: hidden;
}
.mss-container .rs-game .game-content::before{
    content: "";
    position: absolute;
    top: -60%;
    right: -6%;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.145) 0%, rgba(255, 255, 255, 0.24) 8.09%, rgba(255, 255, 255, 0.22) 17.19%, rgba(255, 255, 255, 0.12) 35.42%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(138deg);
}
.mss-container .rs-games-box .col-4.rs-col-0 .rs-game{
    margin-top: 0;
    background-color: #5D9ACE;
}
.mss-container .rs-games-box .col-4.rs-col-1 .rs-game{
    border-right: none;
}
.mss-container .rs-games-box .col-4.rs-col-2 .rs-game{
    border-left: none;
}
.mss-container .rs-game h4{
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
}

.mss-container .rs-game .excerpt{
    margin: 15px 0;
    font-size: 12px;
    line-height: 22px;
    text-align: left;
    padding: 0 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mss-container .rs-game img {
    width: 100%;
}

.mss-container .rs-game .rate-star {
    margin: auto;
}

.mss-container .rs-game .rate-star img {
    width: 16px;
    height: 16px;
}

.mss-container .rs-game a {
    color: #fff;
}

.mss-container .rs-game .excerpt a {
    color: #FF9C2B;
}

.mss-container .rs-games-box .col-4.rs-col-0 .rs-game .excerpt{
    font-size: 13px;
    line-height: 21px;
}

.mss-container .rs-game .excerpt ul{
    padding: 0;
}

.mss-container .rs-game .excerpt ul li {
    list-style: none;
    position: relative;
    padding-left: 15px;
    line-height: 21px;
}

.mss-container .rs-game .excerpt ul li::before {
    content: url(../images/mss-check-li.svg);
    width: 8px;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.mss-container .rs-game .buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.mss-container .rs-game .btn-mss.mss-play {
    width: 120px;
    height: 30px;
    -o-box-shadow: 2px 2px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 15px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
    -webkit-box-shadow: 2px 2px 5px rgb(0 0 0 / 50%), inset 0 1px rgb(255 255 255 / 30%), inset 0 15px rgb(255 255 255 / 20%), inset 0 10px 20px rgb(255 255 255 / 25%), inset 0 -15px 30px rgb(0 0 0 / 30%);
    -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 15px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
    box-shadow: 2px 2px 5px rgb(0 0 0 / 50%), inset 0 1px rgb(255 255 255 / 30%), inset 0 15px rgb(255 255 255 / 25%), inset 0 10px 20px rgb(255 255 255 / 25%), inset 0 -15px 30px rgb(0 0 0 / 30%);
    font-size: 16px;
    color: #fff;
}

.mss-container .rs-game .btn-mss.mss-play svg{
    height: 8px;
    padding-right: 4px;
}

.mss-container .rs-games-box .row {
    margin-left: -80px;
    margin-right: -80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mss-container .rs-games-box .col-4.rs-col-0 .rs-game .btn-mss.mss-play {
    width: 142px;
    height: 40px;
    -o-box-shadow: 2px 2px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 20px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
    -webkit-box-shadow: 2px 2px 5px rgb(0 0 0 / 50%), inset 0 1px rgb(255 255 255 / 30%), inset 0 20px rgb(255 255 255 / 20%), inset 0 10px 20px rgb(255 255 255 / 25%), inset 0 -15px 30px rgb(0 0 0 / 30%);
    -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 20px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
    box-shadow: 2px 2px 5px rgb(0 0 0 / 50%), inset 0 1px rgb(255 255 255 / 30%), inset 0 20px rgb(255 255 255 / 25%), inset 0 10px 20px rgb(255 255 255 / 25%), inset 0 -15px 30px rgb(0 0 0 / 30%);
    background: #FF9700;
    font-size: 20px;
}

.mss-container .rs-games-box .col-4.rs-col-0 .rs-game .btn-mss.mss-play svg{
    height: 14px;
    padding-right: 7px;
}

.mss-container .rs-game .mss-more-info {
    margin-top: 10px;
    font-size: 10px;
    color: #FF9C2B;
    display: flex;
    align-items: center;
}
.mss-container .rs-game .mss-more-info svg {
    padding-right: 3px;
    height: 9px;
}

.mss-container .mss-ribbon {
    background-image: url(../images/mss-badge.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 100px;
    height: 100px;
    top: -11px;
    right: -9px;
    z-index: 30;
}

.mss-container .mss-ribbon .ribbon-inner {
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    position: relative;
    height: 100px;
}

.mss-container .mss-ribbon .ribbon-text {
    position: absolute;
    right: -8px;
    top: 15px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate( 
45deg);
    transform: rotate( 
45deg);
    filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
    width: 80px;
    height: 42px;
}

.mss-container .mss-ribbon .ribbon-text p {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
    height: 42px;
    width: 80px;
    font-size: 13px;
    line-height: 12px;
}

.mss-container .panel-loading.show {
    display: flex!important;
    justify-content: center;
    align-items: center;
}



/* Loading */
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #A2C64D;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }

@media screen and (max-width: 991px){
    .mss-container {
        display: none;
    }   
}
