.sweetSelect{
    border: none;
    width: 100%;
    border: 0;
    border-bottom: #b3b3b3 solid 1px;
    padding: 15px 80px;
    color:  rgb(117, 117, 117);
    font-size: 24px;
    background-color: #ffffff;
    font-weight: bold;
}

.icon-form .form-group{
    margin-bottom: 14px;
    position: relative;
}
.icon-form .form-group .fas{
    font-size: 30px;
    position: absolute;
    top: 17px;
    left: 10px;
    color: black;
}
#payFrom .form-check{
    margin-top: 15px;
}
#payFrom .form-check .form-check-label{
    font-size: 20px;
    color:  rgb(117, 117, 117);
    line-height: 25px;
    padding-left: 10px;
}
#payFrom .form-check  .form-check-input{
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 20px;
    border: 0.1px solid black;
    line-height: 25px;
}

#payFrom .form-check  .form-check-input:checked {
    background-color: rgb(9, 245, 96);
}

.wrap-history{
    padding-top: 20px;
}

.bg-primary{
    background-color: #3875c6;
}
.bg-danger{
    background-color: #e74c3c;
}
.bg-warning{
    background-color: #f39c12;
}
.color-primary{
    color: #3875c6;
}
.color-danger{
    color: #e74c3c;
}
.color-warning{
    color: #f39c12;
}
.color-success{
    color: #52cf71;
}
.statusClass{
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    color: #ffffff;
}
#tableHistory{
    /* border: 1px solid #b1b1b1;
    border-radius: 10px;
    border-collapse:none; */
}
#tableHistory tr{
    border-bottom: 1px solid #cccccc;
}
#tableHistory  td strong{
    font-weight: bold;
    color: #7f8c8d;
}
#tableHistory  td p{
    padding: 5px 0px;
}
#tableHistory  tr:nth-child(even){
    background-color: #f8f6ff;
}
#tableHistory th{
    background-color: rgb(56, 117, 198);;
    color: #ffffff;
    font-weight: bold;
}
.form-title{
    font-size: 2.5em;
    margin-bottom: 15px;
}
#changePass input{
    padding-left: 10px;
}

.quiz-medal {
    margin: 30px 0 0 30px;
}
.quiz-medal {
    position: relative;
    margin-bottom: 16px;
}
.quiz-medal__circle {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 500;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    color: white;
    text-align: center;
    line-height: 46px;
    vertical-align: middle;
    position: relative;
    border-width: 0.2em;
    border-style: solid;
    z-index: 1;
    box-shadow: inset 0 0 0 #a7b2b8, 2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #edeff1;
    text-shadow: 2px 2px 0 #98a6ad;
    background: linear-gradient(to bottom right, #d1d7da 50%, #c3cbcf 50%);
}
.quiz-medal__circle.quiz-medal__circle--gold {
    box-shadow: inset 0 0 0 #b67d05, 2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #fadd40;
    text-shadow: 0 0 4px #9d6c04;
    background: linear-gradient(to bottom right, #f9ad0e 50%, #e89f06 50%);
}
.quiz-medal__circle.quiz-medal__circle--silver {
    box-shadow: inset 0 0 0 #a7b2b8, 2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #edeff1;
    text-shadow: 0px 0px 4px #98a6ad;
    background: linear-gradient(to bottom right, #d1d7da 50%, #c3cbcf 50%);
}
.quiz-medal__circle.quiz-medal__circle--bronze {
    box-shadow: inset 0 0 0 #955405, 2px 2px 0 rgba(0, 0, 0, 0.08);
    border-color: #f7bb23;
    text-shadow: 0 0 4px #7d4604;
    background: linear-gradient(to bottom right, #df7e08 50%, #c67007 50%);
}
.quiz-medal__ribbon {
    content: "";
    display: block;
    position: absolute;
    border-style: solid;
    border-width: 6px 10px;
    width: 0;
    height: 20px;
    top: 50px;
}
.quiz-medal__ribbon--left {
    border-color: #fc402d #fc402d transparent #fc402d;
    left: 8px;
    transform: rotate(20deg) translateZ(-32px);
}
.quiz-medal__ribbon--right {
    left: 28px;
    border-color: #f31903 #f31903 transparent #f31903;
    transform: rotate(-20deg) translateZ(-48px);
}
.dropdown{
    cursor: pointer;
}
#vipInfo{
    cursor: pointer;
}
.helpBuyBtn{
    border:  1px;
    border-radius: 5px;
    padding: 5px;
    background-color: #3875c6;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
}
.helpBuyBtnWrap{
    margin-top: 8px;
    flex: 1;
    text-align: right;
}
.topFeatureBlock > div{
    width: 100%;
}

.topFeatureBlock > div p{
    display: inline;
}

/* switch button */

.switch-wrap {
    display: inline-block;
    cursor: pointer;
    background: #15273b;
    padding: 7px;
    width: 120px;
    height: 67px;
    border-radius: 33.5px;
}
.switch-wrap input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.switch {
    height: 100%;
    display: grid;
    grid-template-columns: 0fr 1fr 1fr;
    transition: 0.2s;
}
.switch::after {
    content: '';
    border-radius: 50%;
    background: #ccc;
    grid-column: 2;
    transition: background 0.2s;
}
input:checked + .switch {
    grid-template-columns: 1fr 1fr 0fr;
}
input:checked + .switch::after {
    background-color: #52cf71;
}

/* shop account */

.acc-list-item{
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}

.acc-list-item.green{
    border: 3px solid #66d66e;
    background: url(../../images/first-card-body-bg.png) center center no-repeat;
}
.acc-list-item.green .account-info{
    background-color: #66d66e;
}
.acc-list-item.red{
    border: 3px solid #f4473b;
    background: url(../../images/second-card-body-bg.png) center center no-repeat
}
.acc-list-item.red .account-info{
    background-color: #f4473b;
}

.acc-list-item.blue{
    border: 3px solid #3875c6;
    background: url(../../images/third-card-body-bg.png) center center no-repeat
}
.acc-list-item.blue .account-info{
    background-color: #3875c6;
}


.acc-list-item img{
    width: 100%;
}
.acc-list-item .account-info{
    width: 100%;
    padding: 8px 5px;
}
.acc-list-item .account-info .name{
    color: #ffffff;
    font-size: 18px;
}

.acc-list-item .account-info .price{
    color: #ffffff;
    font-size: 20px;
}
#wrapGroup{
    position: relative;
    margin-top: 10px;
}
#groups{

}
#wrapGroup .fas{
    font-size: 30px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #66d66e;
    text-align: center;
    padding: 10px;
    color: #FFFFFF;
    border-radius: 50%;
}
#wrapGroup select {
    padding-right: 50px;
    background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}


.pay-card-btn {
    background-image: linear-gradient(to right, #DD5E89 0%, #F7BB97 51%, #DD5E89 100%);
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}
.pay-card-btn p{
    font-size: 18px;
    color: white;
}
.pay-card-btn:hover { 
    background-position: right center; 
    color: #ffffff;
}
#item-button-wrap a{
    display: inline-block;
    min-width: 150px;
}
#item-button-wrap i{
    font-size: 25px;
    padding-bottom: 10px;
}
.buy-toy-code-btn {
    background-image: linear-gradient(to right, #1FA2FF 0%, #12D8FA 51%, #1FA2FF 100%);
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    margin-left: 10px;
}
.buy-toy-code-btn p{
    font-size: 18px;
    color: white;
}
.buy-toy-code-btn:hover { 
    background-position: right center; 
    color: #ffffff;
 }
 .toycode-wrap{
    flex: 1;
    justify-content: center;
 }
 .toycode-wrap .first-card{
    max-width: 402px;
    display: inline-block;
    align-items: center;
 }
 #service-button-wrap a{
    display: inline-block;
    min-width: 150px;
 }
 #service-button-wrap img{
    width: 150px;
    width: 150px;
}
#service-button-wrap .name{
    font-weight: bold;
    padding-top: 10px;
}
#service-button-wrap .price{
    background-color: red;
    display: block;
    border-radius: 10px;
    padding: 5px;
}
.more-info{
    margin-top: 15px;
}
@media only screen and (max-width:479px) {
    #wrapGroup .fas{
        font-size: 25px;
        padding: 8px;
    }
    #item-button-wrap,#service-button-wrap{
        text-align: center;
    }
    #item-button-wrap a,#service-button-wrap a{
        margin-top: 10px;
    }
}

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

.tab{
    margin-top: 20px;
}
.tab .tab-item a,.tab .tab-item{
    display: inline-block;
    border-radius: 15px;
    color: #5d5d5d;
    font-size: 22px;
    background: #eeeeee;
    padding: 15px 20px;
    text-align: left;
    text-decoration: none;
}
.tab .tab-item.active{
    color: #eeeeee;
    background: #3875c6;
}
.amount-section{
    padding: 0px;
}