.loader {
   width:100%;
   height:100%;
   display:flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   position: fixed;
   padding:0px;
   /*opacity:0.5;
   border:3px solid #09acfd;*/
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
    z-index: 9999;
    background: #f4f6f9;
}   
.loader img{
    width: 80px;
    height: 80px;
    -webkit-animation: loader 1s ease-in-out infinite alternate;
   animation: loader 1s ease-in-out infinite alternate;
}
.loader p{
    font-size: 30px;
    font-weight: 600;
    margin-top: 15px;
}

/*.loader:before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid #09acfd;
}

.loader:after {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid #09acfd;
}*/

@keyframes loader {
   from {transform: rotate(0deg) scale(1,1);border-radius:0px;}
   to {transform: rotate(360deg) scale(0, 0);border-radius:50px;}
}
@-webkit-keyframes loader {
   from {-webkit-transform: rotate(0deg) scale(1, 1);border-radius:0px;}
   to {-webkit-transform: rotate(360deg) scale(0,0 );border-radius:50px;}
}

.authentication-logo{
    text-align: center;
}
.authentication-logo a img{
    max-width: 120px;
    margin-bottom: 50px;
}
.signin-form{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}
.signin-form .form-group{
    position: relative;
}
.signin-form .form-group span.form-icon{
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
}
.signin-form .form-control{
    background-color: #F1F1F1;
    color: #000;
    height: 54px;
    border-radius: 10px;
    border: 1px solid #F1F1F1;
}
.form-control:focus{
    box-shadow: none;
}
.form-select:focus{
    box-shadow: none;
}
.signin-form .form-select{
    background-color: #F1F1F1;
    color: #000;
    height: 54px;
    border-radius: 10px;
    border: 0;
}
.btn.btn-primary{
    background: #000;
    color: #fff;
    border-color: #0000;
    height: 54px;
    line-height: 54px;
    padding: 0;
    border-radius: 50px;
}
.btn.btn-outline-primary {
    background: transparent;
    color: #000;
    border:1px solid #000;
    height: 54px;
    line-height: 54px;
    padding: 0;
    border-radius: 50px;
}
a.forget-pwd {
    color: #000;
    display: block;
    text-align: center;
}
.forgot-form .signup-head img{
    width: 200px;
    margin-bottom: 20px;
}
.forgot-form .signup-head p{
    font-size: 16px;
}
.forgot-form .signup-head{
    margin-bottom: 40px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color:#000;
}
a.back-icon {
    padding: 15px;
    display: inline-block;
    position: absolute;
}
label.pure-material-checkbox{
    display: flex;
}
label.pure-material-checkbox span{
    padding-left: 10px;
}
label.pure-material-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.material-textfield {
    position: relative;
}
.material-textfield input {
    font-size: 1rem;
    outline: none;
    border: 1px solid #0000001a;
    border-radius: 12px;
    padding: 1rem 0.7rem;
    color: #000;
    transition: 0.1s ease-out;
}
.material-textfield label {
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F1F1F1;
    color: #00000078;
    font-weight: 500;
    padding: 0 0.3rem;
    margin: 0 0.5rem;
    transition: .1s ease-out;
    transform-origin: left top;
    pointer-events: none;
}
.material-textfield input:focus{
   border: 1px solid #000;
    background-color: #fff;
}
.material-textfield input:focus-visible {
   border: 1px solid #000;
    background-color: #fff;
}
.material-textfield input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(.8);
    color: #000;
    background-color: #fff;
}
.material-textfield input:not(:placeholder-shown){
    border: 1px solid #000;
    background-color: #fff;
}
.material-textfield input:focus + label {
    color: #000;
    top: 0;
    transform: translateY(-50%) scale(.8);
    background-color: #fff;
}
.material-textfield input:focus-within + label {
    color: #000;
    top: 0;
    transform: translateY(-50%) scale(.8);
    background-color: #fff;
}
.material-textfield input:focus-visible + label {
    color: #000;
    top: 0;
    transform: translateY(-50%) scale(.8);
    background-color: #fff;
}


/*------------------*/
.material-textarea-field label{
    top: 15%;
    transform: translateY(-15%);
}
.material-textfield textarea:focus {
   border: 1px solid #000;
    background-color: #fff;
}
.material-textfield textarea:focus-visible {
   border: 1px solid #000;
    background-color: #fff;
}
.material-textfield textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(.8);
    color: #000;
    background-color: #fff;
}
.material-textfield textarea:not(:placeholder-shown){
    border: 1px solid #000;
    background-color: #fff;
}
.material-textfield textarea:focus + label {
    color: #000;
    top: 0;
    transform: translateY(-50%) scale(.8);
    background-color: #fff;
}


.selectBox {
  border-radius: 10px;
  border: 1px solid #F1F1F1;
  position: relative;
  padding: 12px 15px;
  cursor: pointer;
  background: #F1F1F1;
  height: 54px;
  font-size: 16px;
}
.selectBox__value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.selectBox:after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.2s ease-in-out;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
}
.selectBox .dropdown-menu {
  transition: all 0.5s ease-in-out;
  opacity: 0;
  display: block;
  top: 100%;
  width: 100%;
  max-height: 250px;
  z-index: -1;
  overflow-y: auto;
  transform: translateY(-15%);
  visibility: hidden;
  left: 0;
  padding: 0;
}
.material-textfield .selectBox.show {
  background-color: #fff;
  border: 1px solid #000;
}
.selectBox.show:after {
  transform: translateY(-50%) rotate(180deg);
}
.selectBox.show .dropdown-menu {
  transition: all 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}
.selectBox .dropdown-item{
    text-align: center;
    background: #F1F1F1;
    padding: 10px 0;
    margin: 5%;
    border-radius: 10px;
    max-width: 90%;
}
.selectBox .dropdown-item.active {
    background: #000;
}
.material-textfield .selectBox.show + label{
    color: #000;
    top: 0;
    transform: translateY(-50%) scale(.8);
    background-color: #fff;
}
.material-textfield .selectBox.active{
    background-color: #fff;
    border: 1px solid #000;
}
.material-textfield .selectBox.active + label{
    color: #000;
    top: 0;
    transform: translateY(-50%) scale(.8);
    background-color: #fff;
}
.selectBox .dropdown-item img.gender-img {
    float: left;
    margin-left: 15px;
}
.selectBox .dropdown-item.active img.gender-img{
    filter: invert(1);
}
span.step-login {
    position: absolute;
    right: 0;
    padding: 20px;
}
.profile-img input[type="file"] {
    display: none;
}
label.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    overflow: visible;
    cursor: pointer;
    z-index: 1;
    position: relative;
    
}
label.profile-img img {
    width: 100%;
    height: 100%;
    
}
.r-menu {
    display: none !important;
}
.second-menu .main-menu ul li:first-child {
    margin-left: 0;
}
.main-menu ul li.profile-menu a {
    text-decoration: none;
}
.main-menu ul li a {
    display: block;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 34px 18px 34px 0px;
    position: relative;
}
.main-menu ul li.profile-menu a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #fff;
}
.main-menu .has-sub > ul {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
    border-top: 4px solid #000;
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
}
header{
    background-color: #fff;
}
.logo a img{
    width: 200px;
}
.footer-logo{
    text-align: center;
}
.footer-logo img{
    width: 139px;
}
ul.footer-list {
    display: flex;
    justify-content: center;
    padding: 20px;
}
ul.footer-list li{
    padding: 15px;
}
ul.footer-list li a{
    font-size: 18px;
    color: #000;
    text-decoration: none;
}
.social-link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.social-link h4{
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 18px;
}
.social-link ul{
    display: flex;
}
.social-link ul li{
    padding: 10px;
}
.social-link ul li a img{
    width: 44px;
}
.footer-copyright {
    border-top: 1px solid #ddd;
    padding: 15px 0px;
}
.footer-copyright p{
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}
.footer-section {
    padding-top: 70px;
    background: #fff;
}
.chipstrip-home-btn{
    padding: 20px 0px 0px;
}
.chipstrip-home-btn h3{
    margin-bottom: 30px;
}
.section-title{
    padding: 20px 0px;
}
.section-title h2{
    color: #000;
}
.fantasy-box {
    background: #F1F1F1;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 30px;
}
.fantasy-box .fantasy-profile {
    display: flex;
}
.fantasy-box .fantasy-profile img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.fantasy-box .fantasy-profile h4{
    font-size: 18px;
}
.fantasy-box .fantasy-profile h4 img{
    height: 21px;
}
.fantasy-box .fantasy-detail{
    padding: 20px 0px 20px;
}
.fantasy-box .fantasy-detail p{
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.fantasy-footer{
    display: flex;
    justify-content: space-between;
}
.fantasy-footer .offer{
    background-color: #fff;
    padding: 10px 15px;
    color: #000;
    border-radius: 10px;
}
.fantasy-footer .offer span img{
    margin-left: 10px;
}
.f-btn {
    display: flex;
    align-items: center;
}
.f-btn a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    border: 1px solid #000;
    margin: 0 5px;
}

.f-btn a.check-btn{
    border: 1px solid #000;
}
.f-btn a.check-btn img{
    width: 24px;
}
.f-btn a.close-btn{
    background-color: #000;
}
.chpstrip-team-list a.team-box {
    background-color: #F1F1F1;
    display: flex;
    padding: 20px;
    border-radius: 18px;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    margin-bottom: 30px;
}
.chpstrip-team-list a.team-box .team-profile{
    display: flex;
    align-items: center;
}
.chpstrip-team-list a.team-box .team-profile img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.chpstrip-team-list a.team-box .team-profile h4{
    margin-bottom: 0;
    font-size: 18px;
}
.filter{
    float: right;
    padding: 15px 0 30px;
    position: relative;
}
.filter .vodiapicker{
  display: none; 
}

.filter #a{
  padding-left: 0px;
}

.filter #a img, .filter .btn-select img{
  width: 21px;
}

.filter #a li{
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.filter #a li:hover{
 background-color: #F4F3F3;
}

.filter #a li img{
  margin: 5px;
}

.filter #a li span, .filter .btn-select li span{
  margin-left: 30px;
}

/* item list */

.filter .b{
  display: none;
  width: 100%;
  width: 350px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 5px;
  position: absolute;
  right: 0;
  background-color: #fff;  
}

.filter .open{
  display: show !important;
}

.filter .btn-select{
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
  height: 34px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
 
}
.filter .btn-select li{
  list-style: none;
  float: left;
  padding-bottom: 0px;
  color: #000;
}

.filter .btn-select:hover li{
  margin-left: 0px;
}

.filter .btn-select:hover{
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
  
  
}

.filter .btn-select:focus{
   outline:none;
}

.filter .lang-select{
  margin-left: 50px;
}

.fantasy-record {
    display: flex;
    background: #F1F1F1;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    margin-top: -50px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}
.fantasy-record .fantasy-request {
    flex: 1;
    text-align: center;
}
.user-profile-img {
    max-height: 400px;
    overflow: hidden;
    border-radius: 30px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.user-profile-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.user-profile-box{
    padding-top: 50px;
}
img.p-icon{
    position: absolute;
    left: 0;
    right: 0;
    top: -25px;
    margin: auto;
}
.fantasy-form-title {
    display: flex;
    justify-content: space-between;
}
.fantasy-form-title h2{
    font-size: 24px;
    padding-top: 20px;
    word-break: break-all;
}
.fantasy-form-title img {
    width: 130px;
    max-height: 130px;
    margin-bottom: 20px;
}
.fantasy-form .form-control{
    background: #F1F1F1;
    border-radius: 12px;
}
/*--Radio--*/
.select-money .text-radio {
  display: inline-block;
  margin: 5px;

}
.select-money .text-radio input[type="radio"] {
  display: none;
}
.select-money [type="radio"]:checked,
.select-money [type="radio"]:not(:checked) {
position: absolute;
left: -9999px;
}
.select-money [type="radio"]:checked + label,
.select-money [type="radio"]:not(:checked) + label
{
position: relative;
cursor: pointer;
line-height: 20px;
display: inline-block;
color: #000;
text-decoration: underline;
}
.select-money [type="radio"]:checked + label:before,
.select-money [type="radio"]:not(:checked) + label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 21px;
height: 21px;
border: 1px solid #707070;
border-radius: 100%;
background: #fff;
box-shadow: 0px 3px 6px #00000029;
}
.select-money [type="radio"]:checked + label:after,
.select-money [type="radio"]:not(:checked) + label:after {
content: '';
width: 15px;
height: 15px;
background: #4DFF82;
position: absolute;
top: 3px;
left: 3px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.select-money [type="radio"]:not(:checked) + label:after {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
.select-money [type="radio"]:checked + label:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}

.select-money .text-radio [type="radio"]:checked + label:before,
.select-money .text-radio [type="radio"]:not(:checked) + label:before{
    display: none;
}
.select-money .text-radio [type="radio"]:checked + label:after,
.select-money .text-radio [type="radio"]:not(:checked) + label:after{
    display: none;
}
.select-money .text-radio [type="radio"]:checked + label,.select-money .text-radio [type="radio"]:not(:checked) + label{
    text-decoration: none;
    background-color: #f1f1f1;
  padding: 5px 15px;
  font-weight: 500;
  border-radius: 5px;
  border:1px solid rgba(0, 0, 0, 0.39);
  margin-right: 10px;
}
.select-money .text-radio [type="radio"]:checked + label{
    background: #000;
    box-shadow: 1px 2px 3px 3px #00000029;
    border:1px solid #fff;
    color: #fff;
}
.change-password{
    padding: 30px;
}
.change-password input.form-control {
    height: 54px;
    border-radius: 15px;
    background: #f1f1f1;
    
}
.change-password .form-group{
    position: relative;
}
span.form-icon{
    position: absolute;
    right: 10px;
    top: 18px;
}
.form-control:focus{
    background-color: #fff !important;
}
label.edit-profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
label.edit-profile img {
    width: 100%;
    height: 100%;
}
.edit-profile input[type="file"] {
    display: none;
}
.edit-profile .cam-icon{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 21px;
    z-index: 1;
    margin: auto;
}
.personal-info .desc {
    display: flex;
}
.personal-info .desc span {
    min-width: 50px;
    flex-shrink: 0;
    color: #000;
    font-size: 16px;
    margin-right: 10px;
}
.personal-info .desc p{
    flex: 1;
    font-size: 16px;
    margin-bottom: 0;
    word-break: break-all;
}
.personal-info {
    padding: 15px;
    background: #f1f1f1;
    border-radius: 15px;
    margin-top: 20px;
}
.personal-info h3{
    font-size: 21px;
}
.personal-info hr{
    border-bottom: 1px solid rgba(0, 0, 0, 1);    
}
.personal-info label{
    float: right;
    cursor: pointer;
}
.form-control{
    background-color: #f1f1f1;
    border-radius: 12px;
}
.formulate-fantasy{
    padding: 50px 0px;
}
select.form-select.form-control {
    height: 54px;
}

.main-banner{
    background-color: #fff;
    background-image: url(../img/main-banner.png);
    background-repeat: no-repeat;
    background-position: right;
    height: 100vh;
    display: flex;
    align-items: center;
}
.main-banner .banner-details h1 {
    color: #000;
    font-size: 80px;
    font-weight: 700;
}
.main-banner .banner-details p {
    font-size: 21px;
    color: #00000080;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 660px;
}
a.banner-btn {
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    padding: 18px 40px;
    border-radius: 0px 15px 15px 15px;
    font-size: 21px;
    font-weight: 600;
}
header.homeheaderarea {
    padding: 20px 0px;
}
header.homeheaderarea .sticky-menu{
    padding: 20px 0;
    background-color: #fff;
}
header.header-area a.btn.btn-danger{
    background-color: #000;
    color: #fff;
    border-radius: 0px 15px 15px 15px;
    border: 1px solid #000;
    font-size: 18px;
}
header.header-area a.btn.btn-outline-primary{
    color: #000;
    border-radius: 0px 15px 15px 15px;
    border: 1px solid #000;
    font-size: 18px;
    padding: 0px 30px;
    height: 49px;
    line-height: 49px;
    margin-left: 20px;  
}
.index-home{
    background-color: #000;
}
.features-section{
    padding: 100px 0px 40px;
}
.feature-box{
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 50px;
    box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.4);
}
section.download-section{
    padding-bottom: 100px;
}
.download-img {
    height: 600px;
    overflow: hidden;
    text-align: center;
}
.download-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.download-detail h2{
    color: #000;
    margin-bottom: 20px;
}
.download-detail p{
    color: #000;
    font-size: 21px;
    line-height: 1.4;
}
.btn-white{
    background-color: #fff; 
    color: #000 !important;
}
.download-btn{
    margin-top: 50px;
}
.download-btn .btn-white{
    margin-right: 15px;
}
.feature-list{
    margin-top: 30px;
}
.feature-list .feature-box {
    background-color: #F1F1F1;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 5px 5px rgb(165 165 165 / 40%);
    margin-bottom: 30px;
}
.feature-list .feature-box h4 {
    font-size: 18px;
}
.feature-list .feature-box p{
    margin-bottom: 0;
}
.fantasy-decline-profile{
    display: flex;
}
.fantasy-decline-profile img{
    width: 40px;
    flex-shrink: 0;
    height: 40px;
    margin-right: 10px;
}
.fantasy-decline-profile h4{
    font-size: 18px;
}
.fantasy-decline-profile h4 img{
    width: 30px;
}

.material-country input:not(:placeholder-shown) + label.select-label {
    top: 0;
    transform: translateY(-50%) scale(.8);
    color: #000;
    background-color: #fff;
}
.material-country input:not(:placeholder-shown) {
    border: 1px solid #000;
    background-color: #fff;
}
.material-country:focus-within .select-label {
    top: 0px;
    transform: translateY(-50%) scale(.9);
    left: 5px;
    background-color: #fff;
    color: #000;
}
.material-country .select-label.showlabel {
    top: 0px;
    transform: translateY(-50%) scale(.9);
    left: 5px;
    background-color: #fff;
    color: #000;
}

.material-country .select-label {
    padding-left: 93px;
}


/*---------------------*/



  .form-transparent .select-text:focus,.select-text:valid {
    border: 1px solid #000;
    background-color: #fff;
}
  /*-----------*/
  /* select starting stylings ------------------------------*/
  /* active state */
  .select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
    top: 0px;
    transform: translateY(-50%) scale(.9);
    background-color: #fff;
    color: #000;
    
  }


  .select_wrap{
    width: 100%;
    margin: 15px auto;
    position: relative;
    user-select: none;
  }
  
  .select_wrap .default_option{
    background: #fff;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
  }
  
  .select_wrap .default_option li{
      padding: 10px 20px;
  }
  
  .select_wrap .default_option:before{
      content: "";
      position: absolute;
      top: 18px;
      right: 18px;
      width: 6px;
      height: 6px;
      border: 2px solid;
      border-color: transparent transparent #555555 #555555;
      transform: rotate(-45deg);
  }
  
  .select_wrap .select_ul{
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    display: none;
    z-index: 9;
  }
  
  .select_wrap .select_ul li{
    padding: 10px 20px;
    cursor: pointer;
  }
  
  .select_wrap .select_ul li:first-child:hover{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  .select_wrap .select_ul li:last-child:hover{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  .select_wrap .select_ul li:hover{
    background: #fff4dd;
  }
  
  .select_wrap .option{
    display: flex;
    align-items: center;
  }
  
  .select_wrap .option .icon{
    background: url('https://i.imgur.com/oEZu0sK.png') no-repeat 0 0;
      width: 32px;
      height: 32px;
    margin-right: 15px;
  }
  
  .select_wrap .option.pizza .icon{
    background-position: 0 0;
  }
  
  .select_wrap .option.burger .icon{
    background-position:  0 -35px;
  }
  
  .select_wrap .option.ice .icon{
    background-position: 0 -72px;
  }
  
  .select_wrap .option.fries .icon{
   background-position: 0 -111px;
    width: 25px;
  }
  
  .select_wrap.active .select_ul{
    display: block;
  }
  
  .select_wrap.active .default_option:before{
    top: 25px;
    transform: rotate(-225deg);
  }

  #pag-cover {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 466px;
  color: #fff;
  line-height: 1;
  margin: -35px auto 0 auto;
  background-color: #2c63ff;
  border-radius: 4px;
  box-shadow: 0 10px 20px #26418f;
  user-select: none;
}

.arr-cover {
  width: 1px;
  font-size: 20px;
  text-align: center;
}

.arrow {
  padding: 26px;
}

.arrow i {
  display: block;
}

#pg-links {
  display: table;
  width: 100%;
}

#pg-links .td {
  display: table-cell;
  vertical-align: middle;
}

#links {
  width: 216px;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.pg-link {
  position: relative;
  width: 22px;
  float: left;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 26px 25px;
  background-color: transparent;
  transition: 0.2s ease background-color, 0.3s ease color;
}

.pg-link span {
  position: relative;
  z-index: 2;
}

.pg-link:hover {
  background-color: #2d59d6;
}

.pg-link.s-hide {
  color: rgba(255, 255, 255, 0);
}

#m-pg-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1944bd;
  transition: 0.3s ease right, 0.3s ease left;
  z-index: 1;
}

#m-pg-link.left:after {
  right: 72px;
  left: -72px;
}

textarea {
    resize: none;
}

span.error {
    position: absolute;
    color: #B94A48;
    bottom: -18px;
}

.menu-back{
    display : none;
}
video {
    width: 300px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: auto;
    /* position: absolute; */
    border-radius: 20px;
    /* left: 0; */
}

label.profile-img.video-img {
    width: auto;
}
label.profile-img.video-img img {
    width: 200px;
    height:200px;
}

.video-wrapper img.video-icon {
    position: absolute;
    left: 0;
    right: 0;
    width: 40px !important;
    height: 40px !important;
    bottom: -20px;
    margin: auto;
}
.video-wrapper {
    position: relative;
}

.o-btn a {
    background-color: #fff;
    padding: 10px 15px;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
}

.o-btn a img {
    width: 33px;
    margin-left: 5px;
}
.fantasy-box .fantasy-detail video {
    float: right;
    width: 80px;
    height: 80px;
}
.histroy-video {
    position: relative;
    width: 80px;
    height: 80px;
    float: right;
    margin-top: -60px;
}
.histroy-video img.video-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

/*---------------------*/
.user-profile-box.wallet-profile .fantasy-record {
    margin-top: 15px;
    margin-left: 0;
    margin-right: 0;
}
.user-profile-box.wallet-profile .wallet-pro-img {
    text-align: center;
}
.user-profile-box.wallet-profile .wallet-pro-img img{
    width: 140px;
    height: 140px;
    border-radius: 50%;
}
.wallet-accordian{
    margin-bottom: 30px;
}
.wallet-accordian .accordian .accordion-item{
    background: #000 !important;
}
.wallet-accordian .accordian .accordion-item .accordion-header .accordion-button{
    background: #000 !important;
}
.accordion-item{
    border: 0;
}
.accordion-button{
    background-color: #000;
    color: #fff;
    border-radius: 10px !important;
    font-weight: 700;
    font-size: 21px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    background-color: #000;
    color: #fff;
    border-radius: 10px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../img/arrow-bottom.png);
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.8rem;
    border-radius: 50%;
    height: 1.8rem;
    margin-left: auto;
    content: "";
    background-image: url(../img/arrow-bottom.png);
    background-repeat: no-repeat;
    background-size: 1rem;
    transition: transform .2s ease-in-out;
    background-color: #fff;
    background-position: center;
}

.accordion-body{
    background-color: #000;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.wallet-list-box {
    border-bottom: 1px solid #dddddd47;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.wallet-list .wallet-list-box .wallet-body {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.wallet-list .wallet-list-box .wallet-body p{
    margin-bottom: 0;
    color: #fff;
}
.wallet-list .wallet-list-box .wallet-body label{
    margin-bottom: 0;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    color: #000;
}
.wallet-list .wallet-list-box .wallet-footer{
    color: #AEAEAE;
    text-align: end;
}


.notification-box {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    text-decoration: none;
}
.notification-box .notification-img {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-right: 15px;
}
.notification-box .notification-img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.notification-box .notification-detail {
    flex: 1;
    position: relative;
}
.notification-box .notification-detail h4 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 100;
}
.notification-box .notification-detail label {
    margin-bottom: 0;
    word-break: break-all;
}
.notification-box .notification-detail span{
    color: #000;
}
.notification-box .notification-detail span.unread-chat{
    position: absolute;
    right: 0;
    background-color: #000;
    color: #fff;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    bottom: 0;
}
.chat-conversation {
    background: #e5e5e563;
    padding: 0px;
    border-radius: 15px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.conversation-list {
    list-style: none;
    height: 400px;
    padding: 20px;
}
.conversation-list li {
    margin-bottom: 24px;
    display: flex;
}
.conversation-list li.odd {
    justify-content: flex-end;
}
.conversation-list .chat-avatar {
    display: inline-block;
    float: left;
    text-align: center;
    width: 42px;
}
.conversation-list .chat-avatar img {
    border-radius: 100%;
    width: 100%;
}
.conversation-list .conversation-text {
    display: inline-block;
    float: left;
    font-size: 12px;
    margin-left: 12px;
    width: 60%;
}
.conversation-list .ctext-wrap {
    background: #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 12px;
    position: relative;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
    border: 1px solid #cccccc14;
}
.conversation-list .ctext-wrap p {
    margin: 0px;
    padding-top: 0px;
    font-size: 14px;
    word-break: break-all;

}
.ctext-wrap p {
    color: #111;
}
.conversation-list .ctext-wrap i {
    color: #000;
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    position: relative;
    text-align: left;
}
.conversation-list .odd .conversation-text {
    float: right !important;
    margin-right: 12px;
    text-align: right;
    width: 60% !important;
}
.conversation-list .odd .ctext-wrap {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
.conversation-list .odd .ctext-wrap p {
    color: #fff;
    text-align: left;
}
.conversation-list .odd .ctext-wrap i {
    color: #fff;
}
.chat-inputbar {
    position: relative;
    max-width: 96%;
    margin: 0 auto 15px;
}
.chat-inputbar .form-control {
    background: #5F727F12;
    min-height: 50px;
    border-radius: 26px;
    padding-right:80px; 
}
.chat-inputbar .chat-btn {
    position: absolute;
    right: 20px;
    bottom: 3px;
}
.chat-inputbar a img {
    width: 40px;
}
.chat-inputbar a.attach img{
    width: 24px;
}

label.info-label {
    padding: 5px;
    background: #F1F1F1;
    margin-top: 12px;
}

.select-money {
    display: flex;
    justify-content: space-between;
}

label.uploadbank-img {
    width: 100%;
    height: 310px;
    border-radius: 10px;
    margin: auto;
    overflow: hidden;
    cursor: pointer;
}
label.uploadbank-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center ;
}
.uploadbank-img input[type="file"] {
    display: none;
}
.btn-default:hover{
    color: #000;
}

.select-text:valid{
    border: 1px solid #000;
    background-color: #fff !important;
}
.select-text:focus  .select-label,.select-text:valid  .select-label {
  top: 0px;
  transform: translateY(-50%) scale(.9);
  background-color: #fff;
}

input.datepicker-icon {
    background-image: url(../img/calendar.png) !important;
    background-position: 97% !important;
    background-repeat: no-repeat !important;
}

/*----------------*/
.how-it-work{
    background-image: url(../img/how-it-work-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}
/*.how-it-work:before {
    content: "";
    background-image: url(../img/line.png);
    height: 2px;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
}*/

.how-it-work .chipstrip-box {
    text-align: center;
    background-image: url(../img/chipstrip-box-bg.png);
    padding: 50px 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 200px;
    display: flex;
    align-items: center;
    max-width: 90%;
    position: relative;
}
.how-it-work .chipstrip-box:after {
    content: "";
    background-image: url(../img/arrow-ico.png);
    right: 100%;
    position: absolute;
    width: 17.6%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
}
.how-it-work .chipstrip-box.chip-last:after {
    content: "";
    background-image: url(../img/arrow-ico.png);
    right: 100%;
    position: absolute;
    width: 17.6%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    transform: rotate(180deg);
}
.how-it-work .chipstrip-box.chip-first:after{
    display: none;
}

.how-it-work .chipstrip-box h4{
    color: #fff;
    background: linear-gradient(90deg, #FFD777 -0.05%, #C99C44 8.02%, #F0D68A 19.3%, #D8B156 26.37%, #C49642 31.8%, #B78535 36.12%, #B78435 36.8%, #B48031 47.03%, #BE8D3D 51.66%, #CA9D4C 55.82%, #EFD47B 67.57%, #ECD179 70.06%, #E5C771 72.08%, #D7B664 73.95%, #C49D51 75.72%, #AC7F3A 77.41%, #9A6728 78.48%, #A06F2E 80.76%, #B1853F 84.3%, #CDA85A 88.65%, #F3DA80 93.6%, #F4DB81 93.73%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 80%;
    margin: auto;

}
.devil-box{
    background-image: url(../img/devil-bg.png);
    background-repeat: no-repeat;
    height: 600px;
    background-position: center;
    background-size: contain;
    text-align: center;
    padding-top: 120px;
}
.devil-logo img{
    max-width: 80px;
}
.devil-details h3{
    font-size: 28px;
    padding-top: 15px;
}
.devil-details h3,.devil-details p{
    color: #fff;
    text-transform: uppercase;
}
.devil-details p{
    font-size: 21px;
    line-height: 1.4;
}

/*
 *  STYLE 4
 */

 .conversation-list::-webkit-scrollbar-track
 {
     -webkit-box-shadow: inset 0 0 6px #e5e5e500;
     background-color: #e5e5e563;
 }
 
 .conversation-list::-webkit-scrollbar
 {
     width: 10px;
     background-color: #e5e5e563;
 }
 
 .conversation-list::-webkit-scrollbar-thumb
 {
     background-color: #000000;
     border: 2px solid #555555;
 }