




@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
a, a:active, a:focus, a:hover {outline: none; transition: all 0.5s ease; text-decoration: none;}
button, button:active, button:focus, button:hover {outline: none; box-shadow: none !important; transition: all 0.5s ease; text-decoration: none;}

/*===== Variables-Setup =====*/
:root {
    --primary-color: 56, 131, 255;
    --secondary-color: 127, 86, 227;
    --body-color: 208, 208, 208;
    --heading-color: 255, 255, 255;
    --white-color: 255, 255, 255;
    --dark-color: 12, 12, 12;

    --primary-bg: 56, 131, 255;
    --secondary-bg: 127, 86, 227;
    --gray-bg: 23, 23, 23;
    --gray-alt-bg: 54, 54, 54;
    --white-bg: 255, 255, 255;
    --body-bg: 12, 12, 12;

    --body-font-family: 'Unbounded', sans-serif;
    --heading-font-family: 'Unbounded', sans-serif;

    --body-font-size: 14px;
    --h1-font-size: 55px;
    --h2-font-size: 50px;
    --h3-font-size: 36px;
    --h4-font-size: 26px;
    --h5-font-size: 22px;
    --h6-font-size: 15px;

    --body-line-height: 26px;
    --h1-line-height: 82px;
    --h2-line-height: 70px;
    --h3-line-height: 46px;
    --h4-line-height: 36px;
    --h5-line-height: 32px;
    --h6-line-height: 26px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --normal-transition: 0.3s;

    --section-padding: 120px;

    --navbar-height: 110px;
}

/*---------- Variables-Dark-Theme ----------*/
body.dark-theme {
    --body-color: 44, 44, 44;
    --heading-color: 12, 12, 12;

    --secondary-bg: 254, 218, 3;
    --gray-bg: 255, 255, 255;
    --gray-alt-bg: 231, 231, 231;
    --white-bg: 255, 255, 255;
    --body-bg: 241, 241, 241;
}

/*---------- Reset-CSS ----------*/
body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--font-weight-normal);
    /* line-height: var(--body-line-height); */
    color: rgba(var(--body-color), 1);
    background-color: rgba(var(--body-bg), 1);
}



a {
    outline: none;
    text-decoration: none;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    font-family: var(--heading-font-family);
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
   
    font-family: var(--heading-font-family);
    color: rgba(var(--heading-color), 1);
}

.h1,
h1 {
    font-size: var(--h1-font-size);
   
}

.h2,
h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}

.h3,
h3 {
    font-size: var(--h3-font-size);

}

.h3_alt {
    font-size: calc(var(--h3-font-size) - 6px);

}

.h4,
h4 {
    font-size: var(--h4-font-size);
 
}

.h5,
h5 {
    font-size: var(--h5-font-size);
    font-weight: var(--font-weight-medium);
 
}

.h6,
h6 {
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-medium);

}

/*---------- Helper-Class ----------*/
.full-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.single_image {
    overflow: hidden;
    display: inline-block;
    line-height: 0;
    border-radius: 15px;
    margin: 0;
    position: relative;
}

.navbar_height {
    height: var(--navbar-height);
    display: block;
    margin: 0;
    width: 100%;
}

.body_bg_img{ background: url(../img/background.png) no-repeat; background-position: 50%; background-attachment: fixed; min-height: 100vh; background-size: cover;}
.menu_fixed.nav_area{background-color: rgb(var(--gray-bg));}

.header_padding{padding-top: 80px;}



.solid_text {
    color: rgb(var(--heading-color)) !important;
}


.primary_text {
    color: rgb(var(--primary-color)) !important;
}

.secondary_text {
    color: rgb(var(--secondary-color)) !important;
}

.overflow_hidden {
    overflow: hidden;
    width: 100%;
}

.section_padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section_padding-top {
    padding-top: var(--section-padding);
}

.section_padding-bottom {
    padding-bottom: var(--section-padding);
}

.padding_100 {
    padding-top: calc(var(--section-padding) / 1.2);
    padding-bottom: calc(var(--section-padding) / 1.2);
}

.padding_top_100 {
    padding-top: calc(var(--section-padding) / 1.2);
}

.padding_bottom_100 {
    padding-bottom: calc(var(--section-padding) / 1.2);
}

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

.grid_space > div {
    margin-bottom: 30px;
}

.relative {
    position: relative;
    z-index: 1;
}

.gr_text {
    background: linear-gradient(83.48deg, #3883FF 3.34%, #FB03B9 96.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 30px;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 30px;
}
.user_cirlce button{background: transparent; border: none;}
.user_cirlce button img{width: 40px; height: 40px; border-radius: 50%;}
.animate-text {
    background: linear-gradient(to right, #9a42fe,#23ef9b);
    background-size: 200% auto;
    animation: textclip 2s linear infinite;
    -webkit-background-clip: text;
  background-clip: text;
  color: #0000;


  }
 

  @keyframes textclip {
    to {
      background-position:200%
    }
  }
.text-gradiant {
background: linear-gradient(89.81deg,#00fed0 .86%,#00b3ec 30.37%,#9756ff 61.35%,#d834ff 99.09%);
background-size: 200% auto;
animation: textclip 2s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: #0000;
background-clip: text;
text-fill-color: #0000;
}

.wallets_multi  img{width: 60px;}
.banner_right{height: 414px; width: 16rem; border-bottom-right-radius: 9999px; background: linear-gradient(to bottom, #a250ff40,#19fb9b40); float: right; position: relative; border-bottom-left-radius: 9999px; }
.banner_right .nft-1{position: absolute; top: 1rem; left: -10rem; width: 240px;}
.banner_right .nft-2{position: absolute; bottom: -3rem; right: -4rem; width: 180px;}
.banner_right .line-background{left: 6rem; top: -.5rem; position: absolute;}

.multi-chain-box{max-width: 900px; margin: auto;}
.diamond-3d{width: 100px; position: absolute; right: 48px; top: 87px;}

.steps_outer{position: relative; text-align: center;}
.steps_box{height: 6rem; width: 6rem; border-radius: 50%; display: block;
    margin: auto; padding: 25px;
    background-image: linear-gradient(to bottom,#ffffff1a,#fff0)
}
.steps_box img{width: 100%;}
.steps_outer h4{font-size: 18px; margin-top: 20px; font-weight: 500 !important;}

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

.font-12{font-size: 12px !important;}
.font-13{font-size: 13px !important;}
.font-14{font-size: 14px !important;}
.font-15{font-size: 15px !important;}
.font-16{font-size: 16px !important;}
.font-17{font-size: 17px !important;}
.font-18{font-size: 18px !important;}
.font-19{font-size: 19px !important;}
.font-20{font-size: 20px !important;}

.nav-tabs.lien_tab{border: none; overflow-x: auto; background: #ffffff12; border-radius: 10px; padding: 7px 7px; white-space: nowrap; flex-wrap: nowrap;}
.lien_tab.nav-tabs .nav-link {color: rgb(var(--body-color));
    border: 1px solid rgb(var(--gray-alt-bg));
    padding:10px 25px;
    display: block;
    border-radius: 5px;
    background-color: rgba(23, 23, 23, 0.5);
    font-weight: 700;
    font-size: calc(var(--body-font-size) - 1px);}

.lien_tab.nav-tabs .nav-link.active{color: rgb(var(--secondary-color));
    border-color: rgba(var(--secondary-color), 1);}



.navbar-brand {margin-right: 10px; padding-top: 0px; padding-bottom: 0px; padding-right: 30px;}
.header_logo{width: 140px;}
.navbar-nav .nav-item .nav-link{color: #fff; font-weight: 500; }
.navbar-nav .nav-item .nav-link:hover{color:#afc9f0;}
.navbar-nav .nav-item .nav-link.active{color:#afc9f0;}
.navbar-nav .nav-item{margin-left: 10px;}
.navbar-collapse {flex-grow: unset;}
.navbar {padding: 0px;}
.navbar-toggler-icon {filter: brightness(0) invert(1);}
.navbar-toggler {border: none;}

.wallets_multi{background-color: #00b9e90d; border-style: solid; border-radius: 15px; border-width: 2px; padding: 2rem;}
.border_1{border-color: rgb(3, 189, 238);}
.border_2{border-color: rgb(163, 82, 255);}

.border_t_b{border-top: 2.5px solid #ffffff1a;}
.tab-pane .Featured_nft {margin-bottom: 0;}

.item_btn{font-size: 9px;
    padding: 0px 10px;
    border-radius: 20px;
    border: 1px solid #fff;}

.nft_user_img{width: 40px;}
.nft_usdt_img{width: 20px;}
.dotted-animation {left: 69%;
    right: 0; width: 11.5rem;
    height:1px; top: 3rem; position: absolute;
    background:linear-gradient(90deg,#ffffff4d 50%,#0000 0);
    background-repeat:repeat-x;
    background-size:20px 2px;
    animation:border-dance 4s linear infinite
    }
    @keyframes border-dance {
    0% {
        background-position:0
    }
    to {
        background-position:300px
    }
    }
.Featured_nft{border-radius: 20px; padding: 20px; background-color: #ffffff1a; overflow: hidden; margin-bottom: 20px;}
.Featured_nft .nft_img{width: 100%; border-radius: 20px; transition-duration: .5s; object-fit: cover;}
/* .Featured_nft .nft_img:hover {transform: translate(0,0) rotate(0) skewX(0) skewY(0) scaleX(1.1) scaleY(1.1);} */

.Discover_btn{border: none; padding: 3px; border-radius: 10px; background: linear-gradient(268.41deg,#00fed0 -45.09%,#00b3ec 11.72%,#9756ff 84.74%,#d834ff 173.67%);}
.Discover_btn span{ padding: 12px 20px; color: #fff; background: #000000f5; display: block; border-radius: inherit}
.Discover_btn span:hover{ background: linear-gradient(268.41deg,#00fed0 -45.09%,#00b3ec 11.72%,#9756ff 84.74%,#d834ff 173.67%);}


.table thead th {padding: 10px 10px; white-space: nowrap; background: transparent; border-bottom: none; color: #fff;} 
.table td{border-bottom: none; color: #fff; background: transparent; border-top: none;}
.table th {border-top: none;}
.table {border-collapse: separate; margin-bottom: 0; color: #fff; border-spacing: 0px 8px;}
.table tbody tr td{padding: 12px 10px; overflow: hidden;}
.table tbody tr {background: linear-gradient(90deg, #0c0c0c 0%, #0f0f2b30 50%, #0c0c0c 100%);}
.table tbody .bg_none{background: none;}

.trx_btn{display: flex; gap: 9px; padding: 0px; overflow: auto; list-style: none;flex-wrap: wrap;border: 0px solid;border-radius: 6px;padding: 10px;background: #ffffff1a;}
.trx_btn li{display: block; flex-grow: 1; }
.trx_btn li button{display: block; width:100%; padding: 8px 12px; font-size: 12px; text-align: center; border-radius: 10px; background: #ffffff42; font-weight: 700; color: #fff;   border: none;}
.trx_btn li button:hover{color:#000; background: #fffc;}
.trx_btn li button.active{color:#000; background: #fffc;}
  
.presaleInput { border: none; width: 100%; font-weight: 400; color: #fff; backdrop-filter: blur(4px); background-color: #ffffff1a; padding: 16px 20px;  border-radius: 15px;  outline: none;}
.presaleInput option{color: #000;}
.form-group label{margin-bottom: 10px;}
.form-group{margin-bottom: 20px;}

.set_up_wallet{ padding: 15px 15px; padding-right: 0; background: linear-gradient(to right, #ffffff1c 0%, rgba(125, 185, 232, 0) 100%); position: relative; border-radius: 10px;}
.set_up_wallet h4{margin-bottom: 0px; font-size: 13px; font-weight: 500;}
.set_up_wallet h3{color: #19fbb1; margin-bottom: 10px; font-size: 20px; font-weight: 600;}

.table_pagination{list-style: none; white-space: nowrap; overflow-y: hidden; margin-top: 25px; padding: 0px; text-align: center;}
.table_pagination li{display: inline-block; }
.table_pagination li a{display: inline-block; cursor: pointer;  font-size: 13px; text-align: center; color: #fff !important; width: 40px; height: 40px; background: #ffffff47; border-radius: 5px; margin: 0px 4px; line-height: 40px;}
.table_pagination li.active a{background: #19fbb1; background-size: 200% 100%;}
.table_pagination li:hover a{background: #19fbb1; background-size: 200% 100%;}


.Approve_token{max-width: 100px;}



.modal-content {background:#000 url(../img/background.png) no-repeat; background-position: 50%; background-attachment: fixed; background-size: cover;} 
.btn-close{filter: brightness(0) invert(1);}
.gradient_btn{background:linear-gradient(268.41deg,#00fed0 -45.09%,#00b3ec 11.72%,#9756ff 84.74%,#d834ff 173.67%); border: none;padding: 13px 30px; border-radius:10px; font-weight: 600;}
.gradient_btn:hover{opacity: .7;}
.modal-header{border-bottom: var(--bs-modal-header-border-width) solid #dee2e633;}
.modal-backdrop {--bs-backdrop-bg: #373737a1;}

.loader-container {width: 100vw; position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 1111; height: 100vh; display: flex; justify-content: center; align-items: center; background: #0c192761; backdrop-filter: blur(5px);}
.page_loader {display: block;z-index: 99; margin-left: auto; margin-right: auto; width: 50px; height: 50px; border: 3px solid #fff; border-radius: 50%; animation: spin 7s ease-in-out; animation-iteration-count: infinite; transition-duration: 0.1s;}
.page_loader:hover {scale: 0.95;}
.page_loader:active {scale: 2.5;}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    border-bottom: solid 3px transparent;
    border-top: solid 3px transparent;
  }
  50% {
    transform: rotate(1800deg);
    border: 3px solid rgb(25, 251, 177);
    border-left: solid 3px transparent;
    border-right: solid 3px transparent;
  }
  100% {
    transform: rotate(0deg);
    border-bottom: solid 3px transparent;
    border-top: solid 3px transparent;
  }
}

/*---------- Button-Class ----------*/
.primary_button {
    display: inline-block;
    font-size: calc(var(--body-font-size) - 1px);
    box-shadow: 4px 4px 0 #0d804f;
    padding: 12px 20px;
    background-color:rgb(25, 251, 177);
    color: rgba(var(--dark-color), 1);
    position: relative;

    overflow: hidden;
    border: none;


    text-align: center;
    font-weight: var(--font-weight-bold);
    font-family: var(--heading-font-family);
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    outline: none;
}

.primary_button:hover {
    
    color: rgba(var(--dark-color), 1);
    box-shadow: 0 0 0 1px #0d804f;
}

.outline_button {
    display: inline-block;
    font-size: calc(var(--body-font-size) - 1px);
    line-height: 26px;
    padding: 14px 33px;
    background: rgb(var(--gray-bg));
    color: rgba(var(--body-color), 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    -webkit-box-shadow: 0 0 0 1px rgba(var(--gray-alt-bg), 1);
    box-shadow: 0 0 0 1px rgba(var(--gray-alt-bg), 1);
    border-radius: 100px;
    text-align: center;
    font-weight: var(--font-weight-semibold);
    font-family: var(--heading-font-family);
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    outline: none;
}

.outline_button:hover {
    border-color: rgba(var(--secondary-color), 1);
    color: rgb(var(--dark-color));
    background-color: rgb(var(--secondary-bg));
    -webkit-box-shadow: 0 0 0 1px rgba(var(--gray-alt-bg), 1);
    box-shadow: 0 0 0 1px rgba(var(--gray-alt-bg), 1);
}



/*---------- Preloader-CSS ----------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--body-bg), 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 99999;
}

.preloader .loader,
.preloader .loader:after {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.preloader .loader {
    margin: 30px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 5px solid rgba(var(--gray-alt-bg), 1);
    border-right: 5px solid rgba(var(--gray-alt-bg), 1);
    border-bottom: 5px solid rgba(var(--gray-alt-bg), 1);
    border-left: 5px solid rgb(var(--heading-color));
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*---------- Nav_area-Style ----------*/
.nav_area {
    left: 0;
    width: 100%;
    z-index: 1;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    white-space: nowrap;
    margin: 0 auto;
    position: fixed !important;
    right: 0;
    top: 0;
    padding: 0px;
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    /* background-color: rgb(var(--gray-bg)); */
}

.nav_area.affix {
    background-color: rgba(var(--gray-bg), 1);
    
    --navbar-height: 80px;
}

.nav_area .nav_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: auto;
  
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nav_area.affix .nav_row {
    min-height: calc(var(--navbar-height) - 20px);
}

.nav_area .nav_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 200px);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.preloader .nav_logo-image{width: 200px; display: inline-block;}
.preloader .nav_logo-image img{width: 100%;}

.nav_area .nav_logo .nav_logo-image {
    display: block; width: 210px;
}
.nav_area .nav_logo .nav_logo-image img{width: 100%;}
.nav_area .nav_logo .nav_logo-image.logo_dark {
    display: none;
}

body.dark-theme .nav_area .nav_logo .nav_logo-image.logo_dark {
    display: block;
}

body.dark-theme .nav_area .nav_logo .nav_logo-image.logo_light {
    display: none;
}

.nav_area .nav_logo .nav_logo-text {
    margin-bottom: 0;
}

.nav_area .nav_logo .nav_logo-text a {
    min-width: 100px;
    display: block;
    font-size: 40px;
    overflow: hidden;
    position: relative;
    color: rgba(var(--body-color), 1);
}

/*---------- Menu-Style ----------*/
.nav_area .nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_area .nav_menu ul li {
    position: relative;
}

.nav_area .nav_menu ul li > a {
    padding: 20px;
    position: relative;
    color: rgba(var(--body-color), 1);
    text-transform: capitalize;
    background: none;
    font-size: var(--body-font-size);
    display: block;
}

.nav_area .nav_menu ul li.current-menu-item > a,
.nav_area .nav_menu ul li:hover > a,
.nav_area .nav_menu ul li:hover > i {
    color: rgba(var(--heading-color), 1) !important;
}

.nav_area .nav_menu ul li .new-badge {
    font-size: 8px;
    font-weight: 600;
    color: rgb(var(--white-color));
    display: block;
    border-radius: 100px;
    width: 34px;
    height: 15px;
    line-height: 15px;
    
    background: linear-gradient(270deg, #3883FF 0%, #FB03B9 100%);
    text-align: center;
}

.nav_area .nav_right .nav > li {
    position: relative;
    padding: 0;
}

.nav_area .nav_right .nav > li > a {
    padding: 0px;
    margin: 0 10px;
    position: relative;
}

/*---------- Nav-menu-plus-CSS ----------*/
.nav_area .nav_menu ul li i.plus {
    width: 10px;
    height: 10px;
    line-height: 10px;
    display: inline-block;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
    position: relative;
    margin-left: 5px;
}

.nav_area .nav_menu ul li i.plus:before,
.nav_area .nav_menu ul li i.plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 2px;
    display: block;
    background-color: rgba(var(--body-color), 1);
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
}

.nav_area .nav_menu ul li i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}


.nav_area .nav_menu ul li:hover > a > i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.nav_area .nav_menu ul li.current-menu-item > a > i.plus:before,
.nav_area .nav_menu ul li.current-menu-item > a > i.plus:after,
.nav_area .nav_menu ul li:hover > a > i.plus:before,
.nav_area .nav_menu ul li:hover > a > i.plus:after {
    background-color: rgba(var(--heading-color), 1) !important;
}


/*---------- Nav_Tools ----------*/
.nav_area .nav_dark {
    cursor: pointer;
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_close {
    position: absolute;
    top: 13px;
    right: 20px;
    cursor: pointer;
    cursor: pointer;
    color: rgba(var(--body-color), 1);
    display: none;
}

.nav_area .nav_toggle {
    cursor: pointer;
    color: rgba(var(--body-color), 1);
    display: none;
}

.circle-button {
    border: none;
    color: rgb(var(--body-color));
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    font-size: 22px;
    border-radius: 100px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: none;
    outline: none;
    position: relative;
}
.circle-button .dot{background: #e50d0d; right: 4px; display: inline-block; height: 10px; width: 10px; border-radius: 50%; position: absolute;}
.circle-button:not(.no-hover):hover {
 
    color: rgb(var(--body-color));
}

.circle-button:focus {
    outline: none;
}

/*---------- Nav_search ----------*/
.nav_area .nav_search {
    position: relative;
    z-index: 1;
}

.nav_area .nav_search-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(var(--gray-alt-bg), 1);
    border: 1px solid rgba(var(--gray-alt-bg), 1);
    padding: 10px;
    border-radius: 6px;
    -webkit-transition: var(--normal-transition);
    transition: var(--normal-transition);
}

.nav_area .nav_search-form input {
    border: none;
    background: none;
    outline: none;
    width: calc(100% - 50px);
    padding: 5px 20px;
    color: rgba(var(--heading-color), 1);
    font-weight: var(--font-weight-medium);
}

.nav_area .nav_search-form input::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input:-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input::-moz-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input::-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input:-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form input::placeholder {
    color: rgba(var(--body-color), 1);
}

.nav_area .nav_search-form button {
    border: none;
    background: rgb(var(--secondary-bg));
    color: rgba(var(--dark-color), 1);
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 7px;
}

.nav_area .nav_search-form button:hover {
    background-color: rgba(var(--secondary-bg), 1);
    color: rgba(var(--dark-color), 1);
}

.nav_area .nav_right .primary_button {
    margin-left: 20px;
}


/*---------- nav_transparent-Menu ----------*/
.nav_area.nav_transparent {
    position: fixed;
    top: 0;
    left: 0;
}

body:not(.dark-theme) .nav_area.nav_transparent:not(.affix) .nav_logo .nav_logo-image.logo_dark {
    display: none;
}

body:not(.dark-theme) .nav_area.nav_transparent:not(.affix) .nav_logo .nav_logo-image.logo_light {
    display: block;
}

.nav_area.nav_transparent:not(.affix) .nav_toggle {
    color: rgba(var(--body-color), 1);
}



/*--------- ScrollUp-Style --------*/
.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 15px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(var(--body-color), 0.2);
    box-shadow: inset 0 0 0 2px rgba(var(--body-color), 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: rgba(var(--secondary-bg), 1);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: rgba(var(--secondary-color), 1);
}

/*--- Header-Area ---*/
.header_area {
    padding: 100px 0;
}

.header_text .hot_icon {
    margin-bottom: 27px;
}

.header_text .title {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}

.header_text .desc {
    font-size: var(--h5-font-size);
    font-weight: 500;
    margin-bottom: 45px;
}

.header_area .home_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.section_title.section_middle{max-width: 1000px; margin: auto;}
.section_title .main_title {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    margin: 0;
   
}
.section_title  p{font-size: 18px; opacity: .5; }
.section_title.align-items-center {
    text-align: center;
}

.section_title.align-items-center .main_title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section_title .main_title.big {
    font-size: calc(var(--h2-font-size) * 1.6);
    line-height: calc(var(--h2-line-height) * 1.6);
    margin-bottom: 26px;
}

.section_title .main_title .icon {
    width: 30px;
    display: inline-block;
    margin-left: 10px;
}

.section_title .desc {
    font-weight: 500;
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    max-width: 600px;
    color: rgb(var(--heading-color));
}

.custom_arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.custom_arrow .arrow_control {
    border: 1px solid rgb(var(--gray-alt-bg));
    color: rgb(var(--body-color));
    width: 56px;
    height: 56px;
    display: block;
    text-align: center;
    line-height: 54px;
    border-radius: 100px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: none;
    margin-left: 20px;
    outline: none;
}

.custom_arrow .arrow_control:hover {
    border-color: rgb(var(--secondary-color));
    color: rgb(var(--dark-color));
    background-color: rgb(var(--secondary-bg));
}

.custom_arrow .arrow_control:focus {
    outline: none;
}

/*--- Single-Card ---*/
.single_card {
    border-radius: 10px;
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    position: relative;
}

.single_card.live {
    margin-top: 25px;
}

.single_card .card_image {
    margin: -1px -1px 0 -1px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: block;
}

.single_card .card_content {
    padding: 22px;
}

.card_author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    color: rgb(var(--body-color));
}

.card_author:hover {
    color: rgb(var(--body-color));
}

.card_author .author_photo {
    display: inline-block;
    margin-right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    overflow: hidden;
}

.single_card .card_title {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: 12px;
}

.single_card .card_title a {
    color: rgb(var(--heading-color));
}

.single_card .card_title a:hover {
    color: rgb(var(--primary-color));
}

.single_card .card_footer {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single_card .card_love:focus,
.single_card .card_love {
    border: none;
    background: none;
    outline: none;
    color: rgb(var(--heading-color));
}

.single_card .card_love .icon {
    background: linear-gradient(83.48deg, #3883FF 3.34%, #FB03B9 96.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single_card .card_price {
    border-radius: 7px;
    overflow: hidden;
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    margin-top: 25px;
    padding: 10px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.countdown {
    background-color: rgb(var(--gray-bg));
    z-index: 2;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 0;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: calc(var(--body-font-size) - 1px);
    overflow: hidden;
    z-index: 1;
}

.single_card .countdown {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.countdown-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: linear-gradient(83.48deg, #3883FF 3.34%, #FB03B9 96.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-container:before {
    content: "";
    width: 16px;
    height: 16px;
    background: url('../images/fire.png') no-repeat scroll center center / cover;
    margin-right: 8px;
}

.countdown .number:after {
    content: ":";
    margin: 5px;
}

.countdown .number:last-child:after {
    display: none;
}

.sq_button,
.single_card .outline_button {
    padding: 12px 30px;
    border-radius: 5px;
}

.single_card .outline_button {
    margin-top: 25px;
}

.sq_button .icon,
.single_card .outline_button .icon {
    margin-right: 10px;
}


.single_card .card_top_label {
    color: rgb(var(--heading-color));
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
    padding: 30px;
    text-align: center;
}

.single_card.card_preview .card_image {
    border-radius: 0;
    position: relative;
    display: block;
}

.single_card.card_preview .countdown {
    top: auto;
    bottom: 10px;
}

/*-- Creator-Box --*/
.creator_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.creator_box:last-child {
    margin-bottom: 0;
}

.creator_box .author_pic {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 30px 0 0;
}

.creator_box .author_pic > img {
    width: 120px;
    height: 120px;
    border-radius: 100px;
}

.creator_box .author_pic .number {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--secondary-bg));
    text-align: center;
    color: rgb(var(--dark-color));
    border-radius: 100px;
    line-height: 30px;
    font-size: 10px;
    font-weight: 600;
}

.creator_box .title {
    margin-bottom: 8px;
    font-size: calc(var(--h5-font-size) - 2px);
}

.creator_box .author_info b {
    font-size: 12px;
    line-height: 1em;
}

/*--- Profile-Card ---*/
.profile_card {
    border-radius: 10px;
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    text-align: center;
}

.profile_card .card_image {
    margin: -1px -1px 0px -1px;
    overflow: hidden;
    border-radius: 10px;
    display: block;
}

.profile_card .card_content {
    padding: 0 30px 30px 30px;
}

.profile_card .author_photo {
    display: inline-block;
    position: relative;
    margin-top: -50px;
    border-radius: 1000px;
}

.profile_card .author_photo > .pic {
    border-radius: 1000px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: block;
}

.profile_card .author_photo .verified {
    position: absolute;
    right: 2px;
    bottom: 8px;
}

.profile_card .card_header {
    margin-bottom: 25px;
}

.profile_card .card_price .amount {
    font-weight: 500;
    color: rgb(var(--primary-color));
}

.profile_card .card_price .mail {
    font-weight: 500;
    color: rgb(var(--primary-color));
}

.profile_card .card_title {
    margin-bottom: 10px;
    font-size: calc(var(--h5-font-size) - 2px);
}

.profile_card .card_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid rgb(var(--gray-alt-bg));
    padding: 15px 30px;
}

.profile_card .card_footer .card_footer_title {
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
    font-weight: 500;
    margin-bottom: 5px;
}

.profile_card .card_footer .outline_button {
    border-radius: 7px;
    padding: 15px 30px;
    line-height: 1em;
}


.profile_card.second_card .author_photo {
    margin-top: 0px;
}

.profile_card.second_card .card_content {
    padding: 40px;
}

.profile_card.second_card .author_photo > img {
    width: 150px;
    height: 150px;
}

.profile_card.second_card .author_photo .verified {
    right: 0px;
    bottom: 12px;
}

.profile_card .card_mid {
    border-top: 1px solid rgb(var(--gray-alt-bg));
    padding: 40px;
}

/*-- Card-Icon --*/
.icon_box {
    display: block;
    position: relative;
}

.icon_box .icon {
    margin-bottom: 35px;
}

.icon_box .title {
    margin-bottom: 15px;
}

.icon_box .desc {
    font-size: calc(var(--body-font-size) - 1px);
}

/*-- Footer-Area --*/
.footer_main {
    background: url('../images/footer-bg-1.jpg') no-repeat scroll top center / cover;
    position: relative;
    z-index: 1;
}



body.dark-theme .footer_main {
    background-color: rgb(var(--gray-bg));
}

.footer_main {
    position: relative;
    z-index: 1;
}

.footer_main .element_1 {
    position: absolute;
    left: 5%;
    top: 35%;
    width: 87px;
}

.footer_main .element_2 {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 42px;
}

.footer_area {
    padding-top: 150px;
    position: relative;
    z-index: 1;
}


.footer_area .changeable_logo {
    margin-bottom: 25px;
}

body:not(.dark-theme) .changeable_logo .logo_dark {
    display: none;
}

body.dark-theme .changeable_logo .logo_light {
    display: none;
}

.footer_area .widget {
    margin-bottom: 60px;
}

.social_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -6px;
}

.social_link a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: rgb(var(--body-color));
    border: 1px solid rgba(var(--body-color), 0.4);
    border-radius: 100px;
    line-height: 38px;
    font-size: 14px;
    margin: 6px;
}

.social_link a:hover {
    color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

/*-- Subscribe-Form --*/

.subs_section {
    padding-top: 100px;
    z-index: 1;
}

.subscribe_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgb(var(--gray-bg));
    position: relative;
    border-radius: 1000px;
}

.subscribe_form:before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    border-radius: 1000px;
    background: -webkit-gradient(linear, right top, left top, color-stop(-3.53%, #3883FF), to(#FB03B9));
    background: linear-gradient(270deg, #3883FF -3.53%, #FB03B9 100%);
}

.subscribe_form .mc-input {
    width: 100%;
    padding: 20px 40px;
    height: 90px;
    border-radius: 100px;
    border: none;
    font-size: var(--h5-font-size);
    background: none;
    color: rgb(var(--heading-color));
}

.subscribe_form button {
    background: -webkit-gradient(linear, right top, left top, color-stop(-3.53%, #3883FF), to(#FB03B9));
    background: linear-gradient(270deg, #3883FF -3.53%, #FB03B9 100%);
    border: none;
    border-radius: 100px;
    padding: 20px;
    width: 260px;
    height: 90px;
    font-size: calc(var(--h5-font-size) - 2px);
    font-weight: 700;
    color: rgb(var(--white-color));
    position: absolute;
    right: 0;
    top: 0px;
}

.subscribe_form label {
    position: absolute;
    top: 100%;
    left: 0;
}

/*-- Footer-Area --*/
.widget .widget_title {
    font-size: calc(var(--h5-font-size) + 2px);
    line-height: calc(var(--h5-line-height) + 2px);
    margin-bottom: 20px;
}

.nav_link {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_link li:not(:last-child) {
    display: block;
    margin-bottom: 15px;
}

.nav_link li a {
    color: rgb(var(--body-color));
    display: inline-block;
    font-weight: 500;
    position: relative;
}

.nav_link li a:before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 10px;
    background-color: rgb(var(--secondary-bg));
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav_link li a:hover:before {
    opacity: 1;
}

.nav_link li a:hover {
    color: rgb(var(--heading-color));
    padding-left: 16px;
}

.contact_info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact_info li:not(:last-child) {
    margin-bottom: 15px;
}

.copyright_text {
    background: linear-gradient(268.41deg,#00fed0 -45.09%,#00b3ec 11.72%,#9756ff 84.74%,#d834ff 173.67%);
    text-align: center;
    color: rgb(var(--white-color));
    font-weight: 500;
    border-radius: 100px;
    padding: 13px;
   

}
.footer_logo img{max-width: 300px;}


/*--- second_page_wrapper ---*/
.header_element {
    position: relative;
    z-index: 1;
}

.header_element .element {
    position: absolute;
    left: -50px;
    top: 30%;
    z-index: -1;
}

.header_element .element_2 {
    left: auto;
    right: -1%;
    top: 66%;
    width: 80px;
}

.header_element .element_3 {
    left: auto;
    right: 8%;
    width: 20px;
    top: 8%;
}

.header_element .element_4 {
    left: 8%;
    top: 15%;
}

.header_element .element_5 {
    left: 26%;
    top: 80%;
}

.header_element .element_6 {
    left: auto;
    top: 32%;
    right: 16%;
}

.header_element .element_7 {
    left: 5%;
    top: 70%;
}

.header_element .element_8 {
    left: 77%;
    top: 83%;
}

.second_page_wrapper {
    background: url('../images/home2-bg.png') no-repeat scroll center top / cover;
}

.second_page_wrapper .header_area {
    padding: 130px 0;
}


.updown_slider .swiper-slide {
    overflow: hidden;
    border-radius: 20px;
}

.updown_slider .swiper-slide:nth-child(odd) {
    margin-top: var(--section-padding);
}

.second_page_wrapper .icon_box .desc {
    color: rgb(198, 191, 204);
}

body.dark-theme .second_page_wrapper .icon_box .desc {
    color: rgb(101, 101, 101);
}

.buy_sell_slide .swiper-slide {
    line-height: 1em;
    background: linear-gradient(267.41deg, #3883FF 7.79%, #FB03B9 91.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 350px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    width: 2800px;
    padding-top: 40px;
    padding-bottom: 40px;
    white-space: nowrap;
}

.buy_sell_slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.buy_sell_border {
    border-bottom: 1px solid transparent;
    -o-border-image: url(../images/bottom_border_line.png) 100 stretch;
    border-image: url(../images/bottom_border_line.png) 100 stretch;
}

/*-- Author-Box-2 --*/
.author_box_2 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px;
    border-radius: 7px;
    background: linear-gradient(83.48deg, #3883FF 3.34%, #FB03B9 96.58%);
    z-index: 1;
}

.author_box_2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--gray-bg));
    z-index: -1;
    border-radius: 4px;
    border: 1px solid rgb(var(--gray-alt-bg));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.author_box_2:hover:before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    left: 2px;
    top: 2px;
    border-color: rgb(var(--gray-bg));
}

.author_box_2 .author_photo {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 20px;
    position: relative;
}

.author_box_2 .author_photo a {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    display: block;
    overflow: hidden;
}

.author_box_2 .author_photo .verified {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 18px;
    z-index: 2;
}

.author_box_2 .author_photo .online {
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 100px;
    z-index: 2;
}

.author_box_2 .author_photo .online.active {
    background-color: #00CC83;
    border: 1px solid rgb(var(--heading-color));
}

.title a {
    color: rgb(var(--heading-color));
    display: block;
}

.title a:hover {
    color: rgb(var(--primary-color));
}

.author_box_2 .title {
    margin-bottom: 8px;
}

.author_box_2 .author_info {
    width: calc(100% - 80px);
}

.author_box_2 .num {
    position: absolute;
    left: -8px;
    top: -8px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: rgb(var(--secondary-bg));
    color: rgb(var(--dark-color));
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    border-radius: 100px;
}

.profile_cover {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: -230px;
}

/*-- Site_header --*/
.site_header {
    background: url('../images/site_header.jpg') no-repeat scroll center center / cover;
    position: relative;
    z-index: 1;
    padding: 170px 0;
    text-align: center;
}

.site_header:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(2.48%, #0C0C0C), color-stop(86.7%, rgba(0, 0, 0, 0.49)));
    background: linear-gradient(0deg, #0C0C0C 2.48%, rgba(0, 0, 0, 0.49) 86.7%);
}

.section_border_top {
    border-top: 1px solid transparent;
    -o-border-image: url('../images/comment-bottom-line.png') 100 stretch;
    border-image: url('../images/comment-bottom-line.png') 100 stretch;
}

.site_header .page_title {
    margin-bottom: 30px;
    color: rgb(var(--white-color));
}

.site_header .sub_title {
    color: rgb(var(--white-color));
    font-weight: 500;
}

/*-- Contact-Page --*/
.contact_area {
    background-color: rgb(var(--gray-bg));
    padding: calc(var(--section-padding) / 2) var(--section-padding);
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
}

.input_control {
    width: 100%;
    padding: 0 0 15px;
    outline: none;
    color: rgba(var(--heading-color), 1);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    background: none;
}

.input_control:focus {
    border-color: rgba(var(--heading-color), 1);
}

.has-error .input_control {
    border-color: red;
    color: red;
}

.has-error .help-block {
    color: red;
}

textarea.input_control {
    height: 140px;
}

.input_control::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control:-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-moz-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::-webkit-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control:-ms-input-placeholder {
    color: rgba(var(--body-color), 1);
}

.input_control::placeholder {
    color: rgba(var(--body-color), 1);
}

.gr_button.full {
    border-radius: 7px;
    display: block;
    width: 100%;
    margin-top: 15px;
}

.icon_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon_list li {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.icon_list li .icon {
  
    font-size: 20px;
    width: 40px;
    min-width: 40px;
}

.lang_select {
    color: rgb(var(--body-color));
    font-weight: 500;
}

.lang_select:hover {
    color: rgb(var(--heading-color));
}

.map_frame iframe {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 30px;
}

.social_menu {
    margin: -10px;
}

.social_menu a {
    color: rgb(var(--body-color));
    display: inline-block;
    margin: 10px;
}

.social_menu a:hover {
    color: rgb(var(--secondary-color));
}

/*-- Blog-Details --*/

.video_content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.video_content video {
    width: 100%;
    line-height: 0;
}

.video_content .video_button {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: none;
    border-radius: 100px;
    background-color: rgba(var(--secondary-bg), 1);
    outline: none;
    font-size: 16px;
    color: rgba(var(--dark-color), 1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 3;
}

.video_content.play .video_button {
    opacity: 0;
}

.video_content.play:hover .video_button {
    opacity: 1;
}

.video_content .video_poster {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.video_content.play .video_poster {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .video_content .video_button {
        width: 50px;
        height: 50px;
        font-size: 16px;
        line-height: 50px;
    }
}

/*===========  Comment_List ===========*/
.comment_list-area {
    margin-top: 60px;
    margin-bottom: 50px;
}

.comment_respond .comment_respond-title,
.comment_list-area .comment_list-title {
    margin-bottom: 40px;
    font-family: var(--body-font-family);
    font-weight: 700;
    font-size: calc(var(--h5-font-size) + 2px);
}

.comments_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments_list ul,
.comments_list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments_list li {
    padding-left: 110px;
    position: relative;
}

.comment_body {
    margin-bottom: 40px;
}

.comment_body .comment_author img {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 100px;
}

.comment_body .comment_author .fn a {
    font-size: calc(var(--body-font-size) + 2px);
    color: rgba(var(--heading-color), 1);
    display: inline-block;
    font-weight: 500;
}

.comment_body .comment_date a {
    font-family: var(--body-font-family);
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 4px);
    text-transform: uppercase;
    font-weight: 500;
}

.comment_body .comment_footer {
    margin-bottom: 10px;
}

.comment_body .comment_desc {
    margin-bottom: 10px;
}

.comment_body .comment-reply-link .svg_element {
    width: 28px;
    height: 21px;
}

.comment_body .comment-reply-link {
    color: rgba(var(--heading-color), 1);
    display: inline-block;
    margin-top: 10px;
}

.comment_form .input_control {
    margin-bottom: 30px;
    width: 100%;
    padding: 16px 28px;
    min-height: 70px;
    background-color: rgba(var(--gray-bg), 1);
    border: 1px solid rgba(var(--heading-color), 0.08);
    border-radius: 5px;
}

.comment_form .input_control:focus {
    border-color: rgba(var(--header-color), 1);
}

.comment_respond {
    padding-top: 40px;
    border-top: 1px solid transparent;
    -o-border-image: url('../images/comment-bottom-line.png') 100 stretch;
    border-image: url('../images/comment-bottom-line.png') 100 stretch;
}

@media screen and (max-width: 992px) {
    .comments_list li {
        padding-left: 0px;
    }

    .comment_body .comment_author img {
        position: static;
        margin-bottom: 15px;
        display: block;
    }

    .comments_list .children {
        margin-left: 30px;
    }

    .comment_body {
        margin-bottom: 30px;
        padding-bottom: 0px;
    }

    .sidebar_area {
        margin-top: 60px;
    }
}

.post_share-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post_share-menu .title {
    margin: 0 30px 0 0;
    font-size: calc(var(--h5-font-size) + 2px);
    font-weight: 700;
}

.post_share-menu .social_share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -12px;
}

.post_share-menu .social_share a {
    margin: 12px;
    color: rgb(var(--body-color));
    display: inline-block;
    line-height: 1;
}

.post_share-menu .social_share a i.fa-linkedin {
    color: #0072AC;
}

.post_share-menu .social_share a i.fa-pinterest {
    color: #DA0021;
}

.post_share-menu .social_share a i.fa-facebook {
    color: #0072AC;
}

.post_share-menu .social_share a i.fa-twitter {
    color: #3AC4FF;
}

.single_details {
    background-color: rgb(var(--gray-bg));
    padding: 60px 70px;
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 10px;
}

.single_meta {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -8px -20px;
    padding: 0;
}

.single_details .single_meta {
    padding: 30px 0 50px;
}

.single_meta li {
    margin: 8px 20px;
}

.single_meta li .icon {
    color: rgb(var(--heading-color));
    margin-right: 5px;
}

.single_meta li .text {
    color: rgb(var(--body-color));
}

.single_meta li.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single_meta li.tags a {
    background-color: rgb(var(--secondary-bg));
    border-radius: 3px;
    color: rgb(var(--dark-color));
    font-size: 12px;
    font-weight: 700;
    padding: 3px 15px;
    text-transform: uppercase;
}


/*===== Single_Details_Page ======*/
.single_details .title {
    margin-bottom: 30px;
}

.single_details .description > * {
    margin-bottom: 24px;
}

.single_details .description > *:last-child {
    margin-bottom: 0;
}

.single_details .description ul {
    color: rgba(var(--heading-color), 1);
    padding-left: 20px;
}

.single_details .description ul li {
    padding: 4px 0 4px 10px;
}

/*===== Sidebar_Widget_Page ======*/
.widget-alt {
    margin-bottom: 30px;
    padding: 40px 35px;
    border: 1px solid rgba(var(--heading-color), 0.05);
}

.widget-alt .widget-search {
    padding: 0;
    border: none;
}

.widget-alt .widget:last-child {
    margin-bottom: 0;
}

.widget-alt .widget-title {
    font-family: var(--body-font-family);
    margin-bottom: 30px;
}

.widget-title .toggle_arrow {
    border: none;
    background: none;
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.widget-title.collapsed .toggle_arrow {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.info_list {
    list-style: none;
    margin: -12px 0;
    padding: 0;
}

.info_list li {
    margin: 12px 0;
}

.info_list li strong {
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
}

.widget_social {
    margin: -12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 0.8em;
}

.widget_social a {
    margin: 12px;
    color: rgba(var(--primary-color), 1);
}

.widget_social a i.ri-dribbble-fill {
    color: #DE4882;
}

.widget_social a i.ri-behance-fill {
    color: #1664F2;
}

.widget_social a i.ri-linkedin-box-fill {
    color: #0072AC;
}

.widget_social a i.ri-pinterest-fill {
    color: #DA0021;
}

.widget_social a i.ri-facebook-circle-fill {
    color: #0072AC;
}

.widget_social a i.ri-youtube-fill {
    color: #DA0021;
}

.widget_social a i.ri-twitter-fill {
    color: #3AC4FF;
}

.search-form {
    position: relative;
}

.search-form input[type="text"] {
    width: 100%;
    background-color: rgba(var(--body-bg), 1);
    padding: 16px 50px 16px 30px;
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 7px;
    height: 60px;
    color: rgba(var(--heading-color), 1);
    margin: 0;
}

.search-form button {
    border: none;
    background: none;
    color: rgba(var(--heading-color), 1);
    position: absolute;
    right: 20px;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: none;
}


/*===== Post_List_Item =====*/
.post_box {
    margin-bottom: 50px;
}

.post_box:last-child {
    margin-bottom: 0;
}

.post_box .thumb {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.post_box .content {
    position: relative;
    padding-top: 35px;
}

.post_box .content .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.post_box .content .author .pic {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.post_box .content .author strong {
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
    margin-right: 5px;
}

.post_box .content .title {
    margin-bottom: 20px;
    font-size: calc(var(--h4-font-size) + 4px);
    line-height: calc(var(--h4-line-height) + 4px);
}

.post_box .content .title a {
    color: rgba(var(--heading-color), 1);
}

.post_box .content .title a:hover {
    text-decoration: underline;
}

.meta_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0 -30px 0 -30px;
    padding: 20px 0 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.meta_list li {
    padding: 0 30px;
}

.meta_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 1px);
}

.meta_list li a:hover {
    color: rgba(var(--secondary-color), 1);
}

.meta_list li .icon {
    margin-right: 10px;
    color: rgb(var(--heading-color))
}

.post_box .content .desc {
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px)
}

.meta_list li:last-child {
    margin-left: auto;
}

/*===== Post_Widget =====*/
.widget {
    margin-bottom: 30px;
}

.sidebar_main .widget:last-child {
    margin-bottom: 0px;
}

.sidebar_main .widget {
    border-bottom: 1px solid transparent;
    padding-bottom: 30px;
    -o-border-image: url(../images/bottom_border_line.png) 100 stretch;
    border-image: url(../images/bottom_border_line.png) 100 stretch;
}


.widget .widget-title {
    font-family: var(--body-font-family);
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(var(--heading-color));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget .widget-title.collapsed {
    margin-bottom: 0;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget.widget_categories ul li {
    display: block;
    padding: 10px 0;
}

.widget.widget_categories ul ul {
    margin-left: 30px;
}

.widget.widget_categories ul li:first-child {
    padding-top: 0px;
}

.widget.widget_categories ul li:last-child {
    padding-bottom: 0px;
}

.widget.widget_categories ul li a {
    font-weight: var(--font-weight-medium);
    color: rgba(var(--heading-color), 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-weight: 400;
}

.widget-appointment_form .input_control {
    background-color: rgba(var(--body-bg), 1);
    margin-bottom: 20px;
}

/*-- Category-Widget --*/
.widget.widget_categories ul li {
    padding: 6px 0;
}

.widget_categories ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    display: block;
    padding: 10px 15px;
    border-radius: 7px;
}

.widget_categories ul li a:hover {
    color: rgb(var(--heading-color));
}

.widget_categories ul li a:before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 10px;
    display: inline-block;
    background-color: rgb(var(--gray-alt-bg));
    margin-right: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget_categories ul li:hover > a:before {
    background-color: rgb(var(--secondary-bg))
}

/*-- Populer-Post-Widget --*/
.popular_posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular_posts li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.popular_posts li:last-child {
    margin-bottom: 0px;
}

.popular_posts li .post-pic {
    width: 90px;
    min-width: 90px;
    margin-right: 20px;
    overflow: hidden;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 7px;
}

.popular_posts li .title a {
    color: rgba(var(--heading-color), 1);
}

.popular_posts li .title a:hover {
    color: rgb(var(--secondary-color));
}

.popular_posts li .title {
    margin-bottom: 8px;
}

.popular_posts li .post-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(var(--body-color), 1);
    font-family: var(--body-font-family);
    font-size: calc(var(--body-font-size) - 1px);
}

.popular_posts li .post-meta-item .icon {
    line-height: 1em;
    margin-right: 10px;
    color: rgb(var(--heading-color));
}

.tagcloud {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
}


.tagcloud a {
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    color: rgba(var(--body-color), 1);
    font-size: calc(var(--body-font-size) - 2px);
    font-weight: 500;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 7px;
    text-transform: capitalize;
}

.tagcloud a:hover {
    color: rgba(var(--dark-color), 1);
    background-color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

.widget.recent-comment ul li {
    margin-bottom: 15px;
}

.widget.recent-comment ul li:last-child {
    margin-bottom: 0;
}

.widget.recent-comment ul li a {
    display: block;
    font-weight: 500;
    color: rgba(var(--heading-color), 1);
    margin-bottom: 8px;
}

.widget.recent-comment ul li a:before {
    content: "\f4b6";
    font-family: "Font Awesome 5 Pro" !important;
    margin-right: 10px;
    color: rgba(var(--secondary-color), 1);
}

blockquote {
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(var(--gray-bg), 1);
    font-size: 20px;
    position: relative;
    margin: 30px 0;
}

blockquote:before {
    font-family: 'icomoon' !important;
    content: "\e91a";
    position: absolute;
    right: 16%;
    font-size: 100px;
    line-height: 50px;
    color: rgba(var(--primary-color), 0.3);
}


/*===== Navigation_List =====*/
.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -4px;
    padding-top: 60px;
    width: 100%;
}

.nav-links .page-numbers {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 4px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 7px;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    color: rgb(var(--body-color));
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background-color: rgba(var(--secondary-bg), 1);
    color: rgba(var(--dark-color), 1);
    border-color: rgb(var(--secondary-bg));
}

/*======= Main-Sidebar =======*/
.sidebar_main {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
}

/*========== Post-Grid ==========*/
.post_box.grid_post {
    margin: 0;
}

.post_box.grid_post .content .title {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: calc(var(--h4-font-size) - 2px);
    line-height: calc(var(--h4-line-height) - 2px);
}

.post_box.grid_post .content .desc {
    border: none;
}

.post_box.grid_post .content .author {
    margin: 0;
    padding: 0
}

.post_box.grid_post .content .author .pic {
    width: 36px;
    height: 36px;
}

/*========= Login-Form =========*/
.login_box_area {
    background-color: rgb(var(--gray-bg));
    padding: 100px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgb(var(--gray-alt-bg));
}

.login_bg {
    border-radius: 20px;
}

.normal_button {
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgba(var(--heading-color), 0.05);
    border-radius: 7px;
    padding: 10px 16px;
    width: 100%;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.normal_button .icon {
    width: 24px;
    margin-right: 10px;
    display: inline-block;
}

.or-separetor {
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 2px);
}

.text_button {
    color: rgb(var(--body-color));
    display: inline-block;
}

.text_button:hover {
    color: rgb(var(--heading-color));
}

.text_button .icon {
    margin-left: 10px;
}

.link {
    color: rgb(var(--primary-color));
}

/*-- How it's Work Page --*/
.page_desc {
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
}

.load_more {
    font-weight: 600;
    color: rgb(var(--heading-color));
}

.dots_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dots_list li {
    display: block;
    margin-bottom: 40px;
}

.dots_list li a {
    color: rgb(var(--body-color));
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dots_list li a:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background-color: rgba(var(--gray-alt-bg), 1);
    margin-right: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 5px;
}

.dots_list li.active > a:before,
.dots_list li:hover > a:before {
    background-color: rgb(var(--secondary-bg));
}

.dots_list li.active > a,
.dots_list li:hover > a {
    color: rgb(var(--heading-color));
}

/*========== About-Page ==========*/
.patner_slider .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single_item {
    background-color: rgba(var(--dark-color), 1);
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    padding: 30px;
    border: 1px solid rgb(var(--gray-alt-bg));
}

.section_small_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.section_small_title .main_title {
    text-transform: uppercase;
    color: rgb(var(--secondary-color));
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}

.dark-theme .section_small_title .main_title {
    color: rgb(var(--heading-color))
}

.section_small_title:before,
.section_small_title:after {
    content: "";
    width: calc(50% - 200px);
    display: block;
    height: 2px;
    border-bottom: 1px solid transparent;
    -o-border-image: url(../images/bottom_border_line.png) 100 stretch;
    border-image: url(../images/bottom_border_line.png) 100 stretch;
}

/*-- Counter-Box --*/
.counter_box {
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    text-align: center;
}

.border_box {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    -o-border-image: url(../images/right-line.png) 30 stretch;
    border-image: url(../images/right-line.png) 30 stretch;
}

.counter_box .number {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.counter_box .label {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    font-weight: 500;
    margin-bottom: 0;
}

/*-- Team-Area --*/
.team_box {
    text-align: center;
}

.team_box .team_image {
    margin-bottom: 30px;
}

.team_box .team_name {
    font-size: calc(var(--body-font-size) + 2px);
    line-height: calc(var(--body-line-height) + 2px);
    font-weight: 500;
    margin-bottom: 8px;
}

.team_box .team_position {
    font-size: calc(var(--body-font-size) - 1px);
    font-weight: 500;
}

.team_box .team_social {
    margin: -8px;
    padding-top: 20px;
}

.team_box .team_social a {
    display: inline-block;
    color: rgb(var(--heading-color));
    margin: 8px;
}

.team_box .team_social a:hover {
    color: rgb(var(--secondary-color));
}

/*-- Left-Align-Post --*/
.post_box.left_align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post_box.left_align .thumb {
    min-width: 40%;
}

.post_box.left_align .content {
    padding: 15px 30px;
}

.post_box.left_align .content .title {
    margin-top: 0;
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
    margin-bottom: 20px;
}

.post_box.left_align .content .desc {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    padding-bottom: 25px;
}

.post_box.left_align .content .author {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
}

/*======== Rank-View =========*/
.sort_header_card {
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 7px;
    padding: 12px 20px;
}

/* dropdown */
/* ------------------------------ */
.dropdown {
    position: relative;
    z-index: 110;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: left;
    cursor: pointer;
}

.rtl .dropdown {
    text-align: right;
}

.dropdown a,
.dropdown a:hover {
    text-decoration: none;
    outline: none;
    display: inline-block;
    pointer-events: none;
}

.dropdown a,
.header-light .dropdown a:hover {
    color: #333;
}

.dark-scheme .dropdown a,
.dark-scheme .header-light .dropdown a:hover {
    color: rgb(var(--heading-color));
}

.dropdown:not(.day_sort) .btn-selector {
    display: inline-block;
    padding: 15px 25px;
    min-width: 140px;
    border: 1px solid rgb(var(--gray-alt-bg));
    color: rgb(var(--body-color));
    border-radius: 7px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.dropdown.day_sort .btn-selector {
    font-size: var(--h3-font-size);
    color: rgb(var(--primary-color));
    font-weight: 700;
}

.dropdown .btn-selector:hover {
    color: rgb(var(--heading-color));
}

.dropdown > a:after {
    font-family: "Font Awesome 5 Pro" !important;
    font-size: 16px;
    content: "\f107";
    position: relative;
    float: right;
    margin-left: 10px;
}

.dropdown.day_sort .btn-selector:after {
    content: "\f063";
    font-size: var(--h3-font-size);
}

.rtl .dropdown > a:after {
    float: left;
}

.dropdown ul,
.dropdown li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.dropdown ul {
    z-index: 10;
    position: absolute;
    min-width: 100%;
    display: none;
    height: 0;
    cursor: pointer;
    border-top: solid 1px rgb(var(--gray-alt-bg));
}

.dropdown li span {
    background: rgb(var(--gray-bg));
    display: block;
    padding: 8px 16px 8px 16px;
    border: solid 1px rgb(var(--gray-alt-bg));
    border-top: none;
    width: 100%;
    font-weight: 400;
    white-space: nowrap;
}

.dropdown li span:hover {
    background-color: rgb(var(--gray-alt-bg));
    color: rgb(var(--heading-color));
}

.dropdown li.active {
    display: none;
}

.sort_actions {
    margin: -5px -10px;
}

.sort_actions .dropdown {
    margin: 5px 10px;
}

.dropdown.fullwidth,
.dropdown.fullwidth a,
.dropdown.fullwidth ul,
.dropdown.fullwidth li {
    width: 100%;
}

.icon_padlock {
    margin-right: 10px;
}

.rtl .icon_padlock {
    margin-right: 0;
    margin-left: 10px;
}

/*-- Rink-Table --*/
.rank_table {
    margin: 0;
    margin-top: 50px;
    border-radius: 10px;
    border-spacing: 0 15px;
    border-collapse: separate;
}

.rank_table td {
    vertical-align: middle;
    font-weight: 500;
}

.rank_table .no {
    color: rgb(var(--secondary-color));
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

.rank_table .photo {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    overflow: hidden;
    margin-right: 15px;
}

.rank_table .title {
    color: rgb(var(--heading-color));
    font-size: calc(var(--body-font-size) - 1px);
}


.rank_table .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rank_table thead th {
    border: none;
    padding-bottom: 30px;
    font-weight: 500;
    font-size: calc(var(--body-font-size) + 2px);
    color: rgb(var(--heading-color));
}

.rank_table tbody tr td {
    border-bottom: 1px solid rgb(var(--gray-alt-bg));
    border-top: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    padding: 12px;
    vertical-align: middle;
    color: rgb(var(--body-color));
}

.rank_table tbody tr td:first-child {
    border-left: 1px solid rgb(var(--gray-alt-bg));
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.rank_table tbody tr td:last-child {
    border-right: 1px solid rgb(var(--gray-alt-bg));
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.rank_table .arrow {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    margin-right: 6px;
}

/*======= Wallet-Page =======*/
.wallet_area_box {
    padding: 70px 100px;
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
}

.wallet_area_box .wallet_header .title {
    font-size: calc(var(--h5-font-size) + 2px);
    line-height: calc(var(--h5-line-height) + 2px);
}

.wallet_area_box .wallet_header .desc {
    font-size: calc(var(--body-font-size) - 1px);
}

.wallet_area_box .wallet_header {
    margin-bottom: 50px;
}

.wallet_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wallet_list li {
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.wallet_list li .icon {
    display: inline-block;
    width: 56px;
    margin-right: 20px;
}

.wallet_list li .label {
    color: rgb(var(--heading-color));
    font-weight: 500;
}

.wallet_list li .hot {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wallet_list li .hot img {
    width: 15px;
    margin-left: 6px;
}

.wallet_list li:hover,
.wallet_list li.active {
    background-color: rgb(var(--body-bg));
}

/*======== Bootstrap-Classes ========*/
.modal-backdrop {
    opacity: 0.9 !important;
}




[data-toggle="collapse"] {
    cursor: pointer;
}

.collapse.in {
    display: block;
}

.tooltip.top {
    padding: .4rem 0
}

.tooltip.top .tooltip-inner {
    background-color: rgb(var(--heading-color));
    color: rgb(var(--white-color));
    white-space: nowrap;
}

body:not(.dark-theme) .tooltip.top .tooltip-inner {
    color: rgb(var(--dark-color));
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tooltip.top .tooltip-arrow::before {
    border-width: .4rem .4rem 0;
    border-top-color: rgb(var(--heading-color));
}

.fade.in {
    opacity: 1;
}

.tab-content > .active {
    opacity: 1;
}

/*======== Notification-Page ========*/

.notification_box {
    padding: 40px;
}

.tab_buttons {
    list-style: none;
    margin: -10px;
    padding: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tab_buttons li {
    margin: 7px;
}

.tab_buttons li a {
    color: rgb(var(--body-color));
    border: 1px solid rgb(var(--gray-alt-bg));
    padding: 10px 25px;
    display: block;
    border-radius: 5px;
    background-color: rgba(23, 23, 23, 0.5);
    font-weight: 700;
    font-size: calc(var(--body-font-size) - 1px);
}

.tab_buttons li.active a,
.tab_buttons li:hover a {
    color: rgb(var(--secondary-color));
    border-color: rgba(var(--secondary-color), 1);
}

.dark-theme .tab_buttons li.active a,
.dark-theme .tab_buttons li:hover a {
    color: rgb(var(--heading-color));
    border-color: rgba(var(--heading-color), 1);
}

.notify_box {
    border: 1px solid rgb(var(--gray-alt-bg));
    background-color: rgb(var(--gray-bg));
    border-radius: 7px;
    margin-bottom: 15px;
    padding: 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.notify_box .thumb {
    position: relative;
    z-index: 1;
    line-height: 0;
    margin-right: 15px;
    min-width: 60px;
}

.notify_box .thumb .photo {
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100px;
}

.notify_box .thumb .icon {
    position: absolute;
    right: 0;
    top: -2px;
}

.notify_box .title {
    font-weight: 500;
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
    margin-bottom: 8px;
}

.notify_box .title a {
    color: rgb(var(--heading-color));
}

.notify_box:hover {
    background-color: rgb(var(--body-bg));
}

/*-- Home_Page-2 --*/
.header_text_slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
}

.header_area_3 {
    position: relative;
    z-index: 2;
}

.header_area_3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(2.48%, #0C0C0C), color-stop(86.7%, rgba(0, 0, 0, 0.49)));
    background: linear-gradient(0deg, #0C0C0C 2.48%, rgba(0, 0, 0, 0.49) 86.7%);
}

.header_text_slider .header_text {
    text-align: center;
}

.header_text_slider .header_text .main_title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    font-size: 100px;
    color: rgb(var(--white-color));
}

.header_text_slider .header_text .main_title .icon {
    margin-left: 15px;
    width: 80px;
    line-height: 0;
}

.header_text_slider .header_text .sub_title {
    color: rgb(var(--white-color));
    font-weight: 500;
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: 50px;
}

.header_text_slider .header_text .sub_title .icon {
    margin: 0 30px;
}

.header_area_3 .scroll_down {
    position: absolute;
    left: 50%;
    bottom: 50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgb(var(--white-color));
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
}

.header_area_3 .scroll_down .icon {
    width: 30px;
    height: 55px;
    margin-bottom: 30px;
    -webkit-animation: MoveUpDown 2s linear infinite;
    animation: MoveUpDown 2s linear infinite;
}

@-webkit-keyframes MoveUpDown {

    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes MoveUpDown {

    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.play_button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 600;
    color: rgb(var(--white-color));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.play_button:hover {
    color: rgb(var(--white-color));
}

.play_button .icon {
    margin-left: 10px;
    background: -webkit-gradient(linear, right top, left top, color-stop(-9.83%, #3883FF), color-stop(116.67%, #FB03B9));
    background: linear-gradient(270deg, #3883FF -9.83%, #FB03B9 116.67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arrow_controls .control {
    border: none;
    width: 80px;
    height: 80px;
    background: none;
    color: rgba(var(--white-color), 0.4);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 15px;
    z-index: 4;
}

.arrow_controls .control:hover {
    color: rgb(var(--white-color));
}

.arrow_controls .control .svg_element {
    width: 78px;
    height: 16px;
}

.arrow_controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header_text_slider .arrow_controls {
    margin: 0;
    width: 0;
    height: 0;
}

.header_text_slider .arrow_controls .arrow_left {
    position: absolute;
    left: 5vw;
    top: calc(50% - 70px);
}

.header_text_slider .arrow_controls .arrow_right {
    position: absolute;
    right: 5vw;
    top: calc(50% - 70px);
}

/*-- Proccess_box_3 --*/
.priccess_box_3 {
    position: relative;
    z-index: 1;
}

.priccess_box_3:before {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    width: 170px;
    max-width: calc(100% - 120px);
    height: 10px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center right;
    background-image: url('../images/long-dots-arrow-dark.png');
}

.dark-theme .priccess_box_3:before {
    background-image: url('../images/long-dots-arrow-light.png');
}

.priccess_box_3 .box_icon {
    background: linear-gradient(225.37deg, #3883FF 1.57%, #FB03B9 97.83%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: block;
    text-align: center;
    border-radius: 40px 40px 40px 5px;
    padding: 0;
    margin-bottom: 30px;
}

.priccess_box_3 .box_icon img {
    width: 35px;
}

.priccess_box_3 .sirial {
    position: absolute;
    left: 80px;
    width: 25px;
    height: 25px;
    background-color: rgb(var(--secondary-bg));
    text-align: center;
    line-height: 25px;
    color: rgb(var(--dark-color));
    font-weight: 600;
    font-size: 10px;
    border-radius: 100px;
}

.priccess_box_3 .desc {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
}

.priccess_box_3 .title {
    margin-bottom: 20px;
}

/*-- Bidding-Boxes --*/
.live_bidding_2 {
    width: 100vw;
}

.bidding_card {
    background-color: rgb(var(--gray-bg));
    border: 1px solid rgb(var(--gary-alt-bg));
    border-radius: 10px;
    padding: 50px 50px 0 50px;
}

.bidding_card .card_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bidding_card .card_header .card_left {
    width: calc(100% - 100px);
}

.bidding_card .card_header .members {
    list-style: none;
    margin: 0 16px 0 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bidding_card .card_header .members li:not(:first-child) {
    margin-left: -20px;
}

.bidding_card .card_header .members li .photo {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100px;
}

.bidding_card .card_header .members li {
    position: relative;
}

.bidding_card .card_header .members li .active {
    position: absolute;
    right: 10px;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: #00CC83;
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-bg));
}

.bidding_card .card_header .members li .verifyy {
    position: absolute;
    right: 3px;
    bottom: 0;
    width: 16px;
    line-height: 0;
}

.bidding_card .card_header .bids_members {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.bidding_card .card_header .card_left .card_title a {
    color: rgb(var(--heading-color));
}

.bidding_card .card_header .card_left .card_title a:hover {
    color: rgb(var(--primary-color));
}

.bidding_card .card_header .card_left .card_title {
    margin-bottom: 10px;
    font-size: calc(var(--h5-font-size) - 2px);
    line-height: calc(var(--h5-line-height) - 2px);
}

.bidding_card .card_header .card_left .card_footer {
    margin-top: 30px;
}

.bidding_card .card_image {
    margin-top: 40px;
    position: relative;
    display: block;
}

.bidding_card .card_love:focus,
.bidding_card .card_love {
    border: none;
    background: none;
    outline: none;
    color: rgb(var(--heading-color));
}

.bidding_card .card_love .icon {
    background: linear-gradient(83.48deg, #3883FF 3.34%, #FB03B9 96.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bidding_card .card_header .card_right {
    width: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: -32px;
}

.bidding_card .card_header .card_right > * {
    margin-bottom: 32px;
}


.bidding_card .countdown {
    top: auto;
    bottom: 30px;
}

.bidding_card .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*=========== Item-Details ===========*/
.single_image .countdown {
    top: 30px;
}

.space_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.space_list li:not(:last-child) {
    margin-bottom: 16px;
}

.space_list h6 {
    margin-bottom: 8px;
}

.icon_button_list {
    list-style: none;
    margin: -10px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.icon_button_list > li {
    margin: 10px;
}

.icon_button_list > li > a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    border: 1px solid rgb(var(--gray-alt-bg));
    border-radius: 3px;
    background-color: rgb(var(--gray-bg));
    color: rgb(var(--body-color));
}

.icon_button_list > li > a:hover {
    color: rgb(var(--heading-color));
}

.sm_title {
    font-size: calc(var(--body-font-size) - 1px);
    line-height: calc(var(--body-line-height) - 1px);
}

.item_desc .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid transparent;
    -o-border-image: url('../images/left-border-line.png') 100 stretch;
    border-image: url('../images/left-border-line.png') 100 stretch;
}

.meta_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: -10px;
    padding: 0;
}

.meta_icon li {
    margin: 10px;
}

.meta_icon li .text {
    color: rgb(var(--heading-color));
    font-weight: 700;
    margin-right: 3px;
}

.meta_icon li .icon {
    background: linear-gradient(83.48deg, #3883FF 3.34%, #FB03B9 96.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.item-details .primary_button .icon,
.item-details .gr_button .icon {
    margin-right: 5px;
}

/*========= Update-Item-Page ========*/
.single_card.upload_form {
    padding: 40px;
}

.upload_control .control_box {
    border: 1px solid rgb(var(--gray-alt-bg));
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 5px;
    padding: 45px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgb(var(--body-bg));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.upload_control {
    width: 100%;
    display: block;
}

.upload_form .label {
    display: inline-block;
    color: rgb(var(--heading-color));
    margin-bottom: 15px;
}

.upload_control .control_box .add_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid rgb(var(--gray-alt-bg));
    line-height: 38px;
    text-align: center;
    border-radius: 100px;
    margin-top: 25px;
}

.box_control {
    width: 100%;
    display: block;
    background: rgb(var(--body-bg));
    border: 1px solid rgb(var(--gray-alt-bg));
    padding: 15px 22px;
    border-radius: 5px;
    min-height: 60px;
}

/*------- Popup-Modal -------*/
.modal-content.modal_card {
    background-color: rgb(var(--gray-bg));
    padding: 60px;
    border-radius: 10px;
    border: 1px solid rgb(var(--gray-alt-bg));
}

.modal-content.modal_card .modal_header {
    position: relative;
    margin-bottom: 60px;
}

.modal-content.modal_card .modal_header .close {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    color: rgb(var(--heading-color));
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

.input_control_group .label {
    color: rgb(var(--heading-color));
    margin-bottom: 15px;
}

.group_input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 6px;
}

.group_input .input_text {
    background-color: rgb(var(--gray-alt-bg));
    line-height: 1;
    border-radius: 5px;
    height: 60px;
    padding: 0 30px;
    line-height: 60px;
    margin: -6px;
    position: relative;
    z-index: 2;
    color: rgb(var(--heading-color));
}

.group_input .box_control {
    width: calc(100% - 260px);
}

.group_input .input_text .icon {
    margin-right: 8px;
    width: 15px;
    display: inline-block;
}

.modal-content.modal_card .modal_footer {
    position: relative;
    margin-top: 60px;
}

.checkbox_input {
    position: relative;
}

.checkbox_input .label {
    position: relative;
    padding-left: 30px;
}

.checkbox_input .label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background-color: rgb(var(--gray-alt-bg));
    border-radius: 2px;
}

.checkbox_input .label:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro" !important;
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: rgb(var(--gray-alt-bg));
    color: #00CC83;
    border-radius: 2px;
    font-size: 12px;
    text-align: center;
    display: none;
}

.checkbox_input input[type="checkbox"]:checked ~ .label:after {
    display: block;
}

.user_mini_cart {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background-color: rgb(var(--gray-alt-bg));
    padding: 20px;
    border-radius: 8px;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.user_cirlce:hover .user_mini_cart {
    opacity: 1;
    visibility: visible;
}

.user_mini_cart:after {
    content: "";
    width: 0px;
    height: 0px;
    top: -8px;
    right: 20px;
    position: absolute;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid rgba(var(--gray-alt-bg), 1);
    z-index: -1;
}

.user_mini_cart .title {
    margin-bottom: 0px;
}

.user_mini_cart .desc {
    font-size: 13px;
    margin-bottom: 10px;
}

.user_mini_cart .text_copy .text {
    width: 160px;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user_mini_cart .text_copy .copy_button {
    border: none;
    background-color: rgb(var(--secondary-color));
    padding: 5px 8px;
    font-weight: 700;
    color: rgb(var(--dark-color));
    border-radius: 3px;
    line-height: 1em;
    float: right;
    font-size: 10px;
    text-transform: uppercase;
}

.user_mini_cart .icon_list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.user_mini_cart .icon_list li:last-child {
    margin-bottom: 0;
}

.user_mini_cart .icon_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(var(--heading-color));
}
.user_mini_cart .icon_list li a:hover{color: rgb(25, 251, 177);}

.user_mini_cart .icon_list li a .icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    
    display: block;

    text-align: center;
    border-radius: 100px;
    margin-right: 10px;
}

/*-- Dropdown-Menu-Item --*/
.dropdown_menu {
    position: relative;
    z-index: 9;
}

.dropdown_menu .dropdown_content {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: rgba(var(--gray-alt-bg), 1);
    border-radius: 5px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.dropdown_menu:hover .dropdown_content {
    opacity: 1;
    visibility: visible;
}

.social-share-menu {
    margin: -7px;
}

.social-share-menu a {
    display: block;
    margin: 7px;
    opacity: 0.5;
}

.social-share-menu a:hover {
    opacity: 1;
}

.social-share-menu a i {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    display: block;
    text-align: center;
    background-color: rgb(var(--gray-bg));
    border-radius: 4px;
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.social-share-menu a .fa-facebook-f {
    background-color: #4267B2;
}

.social-share-menu a .fa-instagram {
    background: linear-gradient(226.76deg, #F58529 -21.85%, #FEDA77 12.25%, #DD2A7B 50.05%, #8134AF 81.36%, #515BD4 104.48%);
}

.social-share-menu a .fa-twitter {
    background-color: #1DA1F2;
}

.social-share-menu a .fa-pinterest-p {
    background-color: #FF0000;
}

.dropdown-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu-list li {
    display: block;
}

.dropdown-menu-list li a {
    opacity: 0.5;
    padding: 5px;
    display: block;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.dropdown-menu-list li:hover a {
    opacity: 1;
}

.steps .step { display: block; position: relative; text-align: center; width: 100%; margin-bottom: 20px;}
.step-title{font-size: 15px; margin-top: 5px}
.steps .step .step-icon { display: inline-block; text-align: center; position: relative; width: 40px; height: 40px; border-radius: 50%; background-color: #f5f5f5; color: #000; font-size: 20px; line-height: 38px; z-index: 5}
.steps .step::before, .steps .step::after {content: ""; position: absolute; left: -50%; top: 22px; width: 100%; height: 3px; background: linear-gradient(90deg,#ffffff4d 50%,#0000 0);background-repeat: repeat-x; background-size: 20px 2px; animation: border-dance 4s linear infinite; transform: translateY(-50%);}
.steps .step.completed .step-icon{background: #19fbb1;}
.steps .step:first-child::before, .steps .step:first-child::after {display: none;}
.steps .step.completed::after {background: #19fbb1; width: 100%;}
.step.completed .step-title{color: #19fbb1;}
@media only screen and (max-width:760px) {
  .step-title{display: none;}
} 