*{
    margin: 0;
    padding: 0;
}

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

a{
    text-decoration: none !important;
}

h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}

/* ---------------------------- category start ---------------------------- */
.main_category{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0 10px 0;
}

.category_button{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #14213D;
    padding: 6px 16px;
    border-radius: 20px;
    margin: 0 18px;
    background-color: rgb(252, 163, 17,.25);
    transition: all linear .3s;
    cursor: pointer;
    line-height: 1.5;
}

.category_button:hover{
    background-color: #FCA311;
    color: #14213D;
}
/* ---------------------------- category end ---------------------------- */

/* ---------------------------- section title start ---------------------------- */
.title{
    text-align: center;
    padding-top: 64px;
    margin-bottom: 29px;
}

.section_title{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #14213D;
}

.section_title a{
    font-size: 14px;
    color: #FCA311;
    font-weight: 600;
    margin-left: 17px;
}
/* ---------------------------- section title end ---------------------------- */

/* ---------------------------- item start ---------------------------- */

/* item view start */

.item_box{
    margin: 24px 0;
}

.item_view{
    height: 220px;
    border-radius: 10px;
    background-color: rgba(20, 33, 61, .1);
    position: relative;
    margin-bottom: 18px;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(20,33,61,0.05);
    -moz-box-shadow: 0px 0px 0px 1px rgba(20,33,61,0.05);
    box-shadow: 0px 0px 0px 1px rgba(20,33,61,0.05);
}

.item_view .item_view_overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(20, 33, 61, .6);
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    transition: .5s;
    display: flex;
    padding: 10px;
}

.item_view .item_view_overlay:hover{
    opacity: 1;
}

.item_view .item_view_overlay .item_details{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item_view .item_view_overlay .free_item i{
    font-size: 14px;
    color: #14213D;
    background-color: #FCA311;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
}

.item_view .free_item .price{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 14px;
    left: 44px;
}

/* paid item start*/
.item_view .paid_item_top .iconify{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #14213D;
    background-color: #FCA311;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
}

.item_view .paid_item_top .price{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 14px;
    left: 44px;
}
/* paid item end */

.item_view .item_view_overlay .item_title{
    padding: 0 10px 3px 5px;
}

.item_view .item_view_overlay .item_title .item_name{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.item_view .item_view_overlay .icon_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.item_view .item_view_overlay .icon_container .item_icons{
    color: #14213D;
}

.item_view .item_view_overlay .icon_container .item_icons:hover i{
    background-color: #FCA311;
}

.item_view .item_view_overlay .icon_container .item_icons i{
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 14px;
    transition: .3s;
}

.item_view .item_view_img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}
/* item view end */

/* item bottom start */

.item_bottom{
    display: flex;
    justify-content: space-between;
}

.item_bottom .author_details{
    display: flex;
    align-items: center;
}

.item_bottom .item_bottom_icons{
    display: flex;
    justify-content: flex-end;
}

.item_bottom .author_details .item_author_img{
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.item_bottom .author_details .item_author_img img{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.item_bottom .author_details a{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #14213D;
    margin-left: 14px;
    transition: .3s;
}

.item_bottom .author_details a:hover{
    color: #FCA311;
}

.item_bottom .item_bottom_icons a{
    color: #95989A;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    margin-left: 15px;
}

.item_bottom .item_bottom_icons a i{
    margin-right: 5px;
}

.item_bottom .item_bottom_icons .item_bottom_cart i{
    color: #14213D;
    transition: .3s;
}

.item_bottom .item_bottom_icons .item_bottom_cart i:hover{
    color: #FCA311;
}
/* item bottom end */

/* ---------------------------- item end ---------------------------- */

/* ---------------------------- item slider start ---------------------------- */

.slider_item{
    margin: 0 10px;
}

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

.item_slider_main .slick-prev{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-50%, -100%);
    z-index: 2;
}

.item_slider_main .slick-next{
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-100%);
    z-index: 3;
}

.item_slider_main .slick-arrow{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #FCA311;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 2px 2px 18px -8px rgba(20,33,61,0.8);
    -moz-box-shadow: 2px 2px 18px -8px rgba(20,33,61,0.8);
    box-shadow: 2px 2px 16px -8px rgba(20,33,61,0.8);
    transition: all linear .3s;
}

.item_slider_main .slick-arrow:hover{
    background-color: #14213D;
}
/* ---------------------------- item slider end ---------------------------- */

/* tooltip start */

.tooltip{
    top: -7px !important;
}

/* tooltip end */

.view_more{
    text-align: center;
    margin-top: 50px;
}

.view_more_btn{
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #14213D;
    background-color: rgba(20, 33, 61, .05);
    padding: 8px 14px;
    border-radius: 25px;
    transition: all linear .3s;
}

.view_more_btn:hover{
    background-color: #14213D;
    color: #FCA311;
}

/* ---------------------------- Breadcrumb start ---------------------------- */

#breadcrumb{
    margin-top: 30px;
    margin-bottom: 40px;
}

#breadcrumb .breadcrumb-item{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

#breadcrumb .breadcrumb-item a{
    color: rgba(20, 33, 61, .9);
    transition: all linear .3s;
}

#breadcrumb .breadcrumb-item a:hover{
    color: #FCA311;
}

/* ---------------------------- Breadcrumb end ---------------------------- */

/* ---------------------------- Nav after login start---------------------------- */
.navbar .nav_after {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar .navbar-nav .author_img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #95989A;
    margin-right: 15px;
}

.navbar .navbar-nav .author_img img{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.navbar .navbar-nav .author_img_info{
    display: flex;
    align-items: center;
}

.navbar .navbar-nav .author_info .author_name{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #14213D;
}

.navbar .navbar-nav .author_info .author_ammount{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FCA311;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-link {
    padding: 0;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 72px;
    border: none;
    -webkit-box-shadow: 0px 0px 22px 2px rgba(181,181,181,.5);
    -moz-box-shadow: 0px 0px 22px 2px rgba(181,181,181,.5);
    box-shadow: 0px 0px 22px 2px rgba(181,181,181,.5);
}

.navbar .dropdown-menu .dropdown-item{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #14213D;
}

.navbar .dropdown-menu li a{
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar .dropdown-menu .dropdown-item i{
    margin-right: 15px;
    text-align: center;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #14213D;
    background-color: #FCA311;
}

.dropdown-menu {
    padding: 0; 
}

.dropdown_icon {
    margin-left: 15px;
}

.dropdown_icon i {
    color: #14213D;
    transition: all linear .2s;
}

.dropdown_icon i:hover {
    color: #FCA311;
}

/* ---------------------------- Nav after login end---------------------------- */

/* ===========================================================================
                                common css end
============================================================================*/


/* ---------------------------- header start ---------------------------- */
.top_header{
    background-color: #14213D;
}

.top_menu_left {
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 18px;
    padding-bottom: 18px;
}

.top_menu_left .left_box {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.top_menu_left .left_box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.top_menu_left .left_box i {
    margin-right: 10px;
    font-size: 14px;
    margin-top: 3px;
}

.top_menu{
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 0;
    margin-bottom: 0;
    line-height: 1;
}

.top_menu li{
    position: relative;
    padding-top: 18px;
    padding-bottom: 18px;
}


.top_menu li a{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    transition: all linear .3s;
}

.top_menu li a::after{
    content: '';
    width: 0;
    height: 3px;
    background-color: #FCA311;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all linear .2s;
}

.top_menu li a:hover{
    color: #FCA311;
}

.top_menu li a:hover::after{
    width: 100%;
}

.top_menu li .header_cart::after{
    display: none;
}

.top_menu .top_flash_sale a{
    color: #FCA311;
}

.top_menu .top_flash_sale a:hover{
    color: #fff;
}

.top_menu .top_flash_sale a:hover .iconify{
    background-color: #fff;
}

.top_menu .top_flash_sale .iconify{
    font-size: 10px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #FCA311;
    color: #14213D;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    transition: all linear .3s;
}

.top_menu .h_cart{
    position: relative;
    margin-right: 13px;
}

.top_menu .header_cart_notification {
	color: #FCA311;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 12px;
	border-radius: 50%;
	height: 14px;
	width: 14px;
    border: 1px solid #FCA311;
	text-align: center;
	position: absolute;
	top: 9px;
	right: -15px;
}

.h_cart .cart_dropdown {
	position: absolute;
	top: 57px;
	right: -18px;
	background-color: #fff;
	z-index: 1021;
	width: 350px;
	text-align: center;
	padding: 20px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);;
    transition: all linear .3s;
    display: none;
}

.h_cart .cart_dropdown::after {
	content: ' ';
	top: -9px;
	right: 13px;
	position: absolute;
	height: 20px;
	width: 20px;
	background-color: #fff;
	transform: rotate(45deg);
}

.h_cart .cart_dropdown p {
    font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
    color: #14213D;
}

.top_menu .h_cart:hover .cart_dropdown {
    display: block;
}

.h_cart .cart_dropdown .cart_item_box {
    display: flex;
    margin-bottom: 20px;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_img {
    width: 30%;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_details {
    width: 55%;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_delete {
    width: 5%;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_img img{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_details {
    text-align: left;
    padding-left: 15px;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_details .cart_item_name {
    font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
    color: #14213D;
    text-transform: capitalize;
    line-height: 1.5;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_details .cart_item_price {
    font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
    margin-top: 10px;
    color: #14213D;
}  

.h_cart .cart_dropdown .cart_item_box .cart_item_delete {
    padding-left: 20px;
    padding-top: 5px;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_delete i {
    color: #FCA311;
    transition: all linear .3s;
    cursor: pointer;
}

.h_cart .cart_dropdown .cart_item_box .cart_item_delete i:hover {
    color: #14213D;
}

.h_cart .cart_dropdown .cart_amount {
    display: flex;
    justify-content: center;
}

.h_cart .cart_dropdown .cart_amount p {
    font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
    color: #95989A;
}

.h_cart .cart_dropdown .cart_amount .c_price {
    margin-left: 10px;
    color: #14213D;
}

.h_cart .cart_dropdown .cart_button {
	margin-top: 41px;
	margin-bottom: 13px;
}

.h_cart .cart_dropdown .cart_button a {
    font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    background-color: #14213D;
    border-radius: 4px;
    margin: 0 10px;
    transition: all linear .3s;
}

.h_cart .cart_dropdown .cart_button a:hover {
    background-color: #FCA311;
    color: #14213D;
}

.h_cart .cart_dropdown a::after {
	display: none;
}
/* ---------------------------- header end ---------------------------- */

/* ---------------------------- navbar start ---------------------------- */
.navbar{
    background-color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(20, 33, 61, .1);
}

.navbar .navbar-brand img{
    width: auto;
    height: 40px;
}

.navbar .nav_sign a{
    color: #14213D;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-left: 36px;
}

.navbar .nav_sign .nav_selling {
    margin-right: 36;
    margin-left: 0;
}

.navbar .nav_sign .sign_in{
    position: relative;
}

.navbar .nav_sign .sign_in::after{
    content: '';
    width: 0;
    height: 4px;
    background-color: #FCA311;
    position: absolute;
    bottom: -29px;
    left: 0;
    transition: all linear .2s;
}

.navbar .nav_sign .sign_in:hover::after{
    width: 100%;
}

.navbar .nav_sign .sign_up{
    font-weight: 600;
    position: relative;
}

.navbar .nav_sign .sign_up::before{
    content: '';
    width: 100%;
    height: 4px;
    background-color: #14213D;
    position: absolute;
    bottom: -29px;
    left: 0;
}

.navbar .nav_sign .sign_up::after{
    content: '';
    width: 0;
    height: 4px;
    background-color: #FCA311;
    position: absolute;
    bottom: -29px;
    left: 0;
    transition: all linear .2s;
}

.navbar .nav_sign .sign_up:hover::after{
    width: 100%;
}
/* ---------------------------- navbar end ---------------------------- */

/* ---------------------------- banner start ---------------------------- */
#banner{
    /* background-color: rgba(20, 33, 61, .1); */
    text-align: center;
    background: url(../images/banner-new-2-01.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#banner .banner_main_heading{
    padding-top: 110px;
}

#banner h1{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #14213D;
}

/* search start */

#banner .search_box{
    display: flex;
    background-color: #fff;
    margin: 0 55px;
    position: relative;
	padding: 15px 22px;
	border-radius: 40px;
    /* border: 1px solid rgba(20, 33, 61, .5); */
}

#banner .search_box .search_field{
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #14213D;
}

#banner .search_box .search_field .search_input{
    border: none;
    outline: none;
    color: #14213D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 95%;
}

#banner .search_box .search_field button{
    border: none;
    background: none;
}

#banner .search_box .search_field i{
    font-size: 20px;
    transition: all linear .2s;
}

#banner .search_box .search_field i:hover{
    color: #FCA311;
}
  
.autocomplete-items {
    position: absolute;
    border-radius: 30px;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 102%;
    left: 0;
    right: 0;
}
  
.autocomplete-items div {
    padding: 15px;
    cursor: pointer;
    background-color: #E7E8EB;
    border-bottom: 1px solid #fff;
    text-align: left;
    transition: all linear .3s;
}
  
.autocomplete-items div:hover {
    font-weight: 800;
    border-bottom: 1px solid #14213D;
}

/* search end */

#banner .banner_example{
    padding-bottom: 105px;
}

#banner .banner_example h6{
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(20, 33, 61, .65);
}

/* ---------------------------- banner end ---------------------------- */

/* ---------------------------- premium member start ---------------------------- */
#premium_member{
    background-color: #14213D;
    margin-top: 84px;
}

#premium_member .counter_main{
    padding-top: 115px;
    padding-bottom: 100px;
}

#premium_member .counter_number{
    text-align: center;
}

#premium_member .counter_number p{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-top: 15px;
}

#premium_member h3{
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #FCA311;
}

#premium_member .member_action{
    text-align: center;
    padding-bottom: 84px;
}

#premium_member .member_action .action_button a {
	padding: 17px 26px;
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #14213D;
	background-color: #fff;
	border-radius: 36px;
    transition: all linear .3s;
}

#premium_member .member_action .action_button a:hover{
    background-color: #FCA311;
}

#premium_member .member_action .member_text p{
    margin-top: 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
}

/* ---------------------------- premium member end ---------------------------- */

/* ---------------------------- popular category start ---------------------------- */
#popular_category{
    margin-top: 32px;
    margin-bottom: 10px;
}

#popular_category .popular_why{
    margin-top: 25px;
}

#popular_category .popular_why h4{
    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    font-weight: 800;
    padding-bottom: 16px;
    color: #14213D;
}

#popular_category .popular_why p{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #14213D;
}

#popular_category .popular_why .popular_details{
    padding-top: 15px;
    padding-right: 170px;
    text-align: left;
}

#popular_category .popular_why .popular_details_box{
    padding-top: 46px;
    text-align: center;
}

#popular_category .popular_why .popular_icons i{
    color: #FCA311;
    font-size: 24px;
}

#popular_category .popular_why .popular_text h5{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #14213D;
    padding-top: 15px;
}

#popular_category .popular_category_item{
    margin-top: 36px;
}

#popular_category .popular_category_item a:hover .popular_category_image .category_overlay p{
    color: #FCA311;
}

#popular_category .popular_category_item a:hover .popular_category_image .category_overlay{
    background-color: #14213D;
}

#popular_category .popular_category_item .popular_category_image{
    height: 135px;
    margin-bottom: 24px;
    position: relative;
}

#popular_category .popular_category_item .popular_category_image .category_overlay{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(20,33,61,1) 0%, rgba(20,33,61,0.7) 35%, rgba(255,255,255,0) 100%);
    transition: all linear .3s;
}

#popular_category .popular_category_item .popular_category_image .category_overlay p{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 10px;
    transition: all linear .3s;
}

#popular_category .popular_category_item .popular_category_image img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

/* ---------------------------- popular category end ---------------------------- */

/* ---------------------------- Return to Top start ---------------------------- */

#return-to-top {
    position: fixed;
    bottom: 103px;
    right: 25px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: block;
    text-decoration: none;
    border-radius: 50%;
    display: none;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 6px 1px rgba(20,33,61,0.2);
    -moz-box-shadow: 0px 0px 6px 1px rgba(20,33,61,0.2);
    box-shadow: 0px 0px 6px 1px rgba(20,33,61,0.2);
    z-index: 5000;
}

#return-to-top i {
	color: #14213D;
	margin: 0;
	position: relative;
	left: 19px;
	top: 15px;
	font-size: 26px;
}

#return-to-top:hover {
    background: #FCA311;
}

/* ---------------------------- Return to Top start ---------------------------- */

/* ---------------------------- Messenger start ---------------------------- */
#messenger {
	position: fixed;
	bottom: 20px;
	right: 25px;
	background: #FCA311;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	z-index: 5001;
}

#messenger i {
	color: #fff;
	margin: 0;
	position: relative;
	left: 10px;
	top: 10px;
	font-size: 40px;
	transition: all linear .3s;
}

#messenger:hover i{
    color: #14213D;
}
/* ---------------------------- Messenger end ---------------------------- */

/* ---------------------------- SSL Commerez start ---------------------------- */
#ssl_commerez {
    margin-top: 90px;
}

#ssl_commerez .ssl_img_box img {
    width: 100%;
    display: block;
}
/* ---------------------------- SSL Commerez end ---------------------------- */

/* ---------------------------- Footer start ---------------------------- */
footer{
    background-color: #14213D;
    margin-top: 100px;
    color: #fff;
}

footer .footer_main{
    padding-top: 95px;
    padding-bottom: 60px;
}

footer .footer_main .footer_title{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FCA311;
    text-transform: uppercase;
    margin-bottom: 25px;
}

footer .footer_main .r_title{
    font-weight: 400;
}

footer .footer_main .follow_icons{
    margin-bottom: 44px;
}

footer .footer_main .follow_icons a{
    color: #14213D;
    margin-right: 11px;
}

footer .footer_main .follow_icons a:hover i{
    background-color: #FCA311;
}

footer .footer_main .follow_icons i{
    font-size: 16px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: all linear .3s;
}

footer .footer_main .contact_us .contact_details{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

footer .footer_main .contact_us .contact_details i{
    font-size: 16px;
    margin-right: 14px;
}

footer .footer_main .contact_us .contact_details p{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

footer .footer_main .footer_link .all_links a{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    display: block;
    margin-bottom: 8px;
    text-transform: capitalize;
    transition: all linear .3s;
}

footer .footer_main .footer_link .all_links a:hover{
    color: #FCA311;
}

footer .help_support{
    margin-top: 44px;
}

footer .footer_main .newsletter_details{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 38px;
}

footer .footer_main .newsletter form{
    position: relative;
}

footer .footer_main .newsletter .footer_subscribe{
    border: none;
    height: 40px;
    width: 100%;
    border-radius: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding-left: 14px;
}

footer .footer_main .newsletter .footer_subscribe:focus{
    outline:none;
}

footer .footer_main .newsletter .subscribe_button{
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    border-radius: 0 40px 40px 0;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 0 14px 0 10px;
    background-color: #FCA311;
    color: #14213D;
    transition: all linear .3s;
}

footer .footer_main .newsletter .subscribe_button:hover{
    color: #fff;
}

footer .f_copy_main {
    display: flex;
    justify-content: space-between;
}

footer .footer_copyright{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #000;
    color: #c7c7c7;
    padding: 25px 0;
}

footer .footer_copyright .c_link{
    color: #FCA311;
}

footer .footer_policy {
    text-align: right;
}

footer .copy_link {
    color: #fff;
    margin-left: 30px;
    transition: all linear .3s;
}

footer .copy_link:hover {
    color: #FCA311;
}

/* ---------------------------- Footer end ---------------------------- */


/* ======================================================================
                            All items page start
=========================================================================*/

#all_category{
    margin-top: 50px;
}

.controls button{
    border: none;
}

.category_button_blue{
    background-color: rgba(20, 33, 61, .07);
}

.mix{
    display: inline-block;
    width: 23%;
    margin: 24px 9px 24px 10px;
}

.mixitup-control-active{
    background-color: #FCA311;
}

.filter_field{
    margin-top: 70px;
    margin-bottom: 55px;
    margin-left: 8px;
    margin-right: 8px;
}

/* .filter_field .filter_options{
    margin-left: 10px;
} */

.filter_field label{
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #14213D;
    margin-bottom: 15px;
    line-height: 1;
}

.filter_field input{
    outline: none;
    border: none;
    background-color: rgba(20, 33, 61, .1);
    height: 40px;
    border-radius: 20px;
    padding: 10px 20px 10px 40px;
    width: 100%;
}

.filter_field .f_s_box{
    position: relative;
}

.filter_field .f_s_box i{
    position: absolute;
    top: 12px;
    left: 15px;
    border: none;
}

.filter_field .f_o_select{
    border: none;
    background-color: rgba(20, 33, 61, .1);
    height: 40px;
    border-radius: 20px;
    width: 100%;
    padding: 0 14px;
    appearance: none;
    background-image: url("../images/chevron-down-solid.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 42px 16px;
}

.filter_field .f_o_select:focus-visible{
    outline: none;
}

.filter_category{
    justify-content: flex-start;
    align-items: center;
    margin: 32px 0;
}

.filter_category .sort_title{
    width: 120px;
}

.item_sort_main{
    display: flex;
	justify-content: space-between;
	margin: 40px 0;
}

.item_page{
    display: flex;
    justify-content: space-around;
	align-items: center;
    margin-right: 20px;
}

.item_page .sort_btn{
    padding: 0;
}

.item_page .mixitup-control-active{
    color: #14213D;
}

.item_sort_main .sort_title{
    margin-right: 10px;
}

.item_sort_main .input_title{
    width: 120px;
}

.item_sort_main .input{
	outline: none;
	border: 1px solid rgba(20, 33, 61, .3);
	height: 40px;
	border-radius: 20px;
	padding: 7px 10px 10px 15px;
    margin-left: 10px;
}

/* ======================================================================
                            All items page end
=========================================================================*/

/* ======================================================================
                            Single item page start
=========================================================================*/

#single_item_top{
    margin-top: 60px;
    color: #14213D;
}

#single_item_top .vendor_details{
    display: flex;
    align-items: center;
}

#single_item_top .vendor_img{
    height: 65px;
    width: 65px;
    border-radius: 50%;
}

#single_item_top .vendor_img img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

#single_item_top .vendor_text{
    margin-left: 30px;
    font-family: 'Open Sans', sans-serif;
}

#single_item_top .vendor_text .vendor_name{
    font-size: 17px;
    font-weight: 700;
    color: #14213D;
    transition: all linear .3s;
}

#single_item_top .vendor_text .vendor_name:hover{
    color: #FCA311;
}

#single_item_top .vendor_text .vendor_skill{
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

#single_item_top .v_follow{
    display: flex;
    justify-content: flex-end;
}

#single_item_top .vendor_follow{
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    background-color: rgba(20, 33, 61, .1);
    padding: 8px 13px;
    border-radius: 25px;
    transition: all linear .3s;
}

#single_item_top .vendor_follow:hover{
    background-color: #14213D;
    color: #FCA311;
}

#single_item_top .vendor_follow i{
    margin-right: 9px;
    font-size: 14px;
}

#single_item_view{
    margin-top: 45px;
}

/* #single_item_view .item_view_img{
    margin-right: 20px;
} */

#single_item_view .item_img_focus{
    margin-top: 7px;
    margin-bottom: 50px;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(20,33,61,0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(20,33,61,0.25);
    box-shadow: 0px 0px 5px 0px rgba(20,33,61,0.25);
    position: relative;
    z-index: 100;
}

#single_item_view .img_focus{
    height: 552px;
    width: 100%;
}

#single_item_view .i_focus{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

#single_item_view .img_bottom{
    height: 65px;
    width: auto;
    margin: 0 10px;
}

#single_item_view .i_bottom{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 1px solid rgba(20, 33, 61, .1);
}

#single_item_view .slick-prev{
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 102;
}

#single_item_view .slick-next{
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 101;
}

#single_item_view .slick-arrow{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #14213D;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 1px 1px 10px -5px rgb(20, 33, 61);
    -moz-box-shadow: 1px 1px 10px -5px rgb(20, 33, 61);
    box-shadow: 1px 1px 10px -5px rgb(20, 33, 61);
    transition: all linear .3s;
}

#single_item_view .item_view_details{
    margin-left: 20px;
}

#single_item_view .item_view_details .item_name {
	font-family: 'Raleway', sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 40px;
}

#single_item_view .item_view_details .item_view_price{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

#single_item_view .item_view_details .item_view_price i {
	font-size: 16px;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background-color: #FCA311;
	text-align: center;
	line-height: 25px;
    margin-right: 15px;
    color: #fff;
}

#single_item_view .item_view_details .price{
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    font-weight: 800;
}

#single_item_view .item_view_details .item_features{
    margin-bottom: 40px;
}

#single_item_view .item_view_details .item_features li{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
}

#single_item_view .item_view_details .item_features li i{
    margin-right: 15px;
}

#single_item_view .item_view_details .item_features li a{
    font-weight: 600;
    color: #14213D;
    transition: all linear .3s;
}

#single_item_view .item_view_details .item_features li a:hover{
    color: #FCA311;
}

#single_item_view .item_view_details .item_license{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #95989A;
    margin-bottom: 40px;
}

#single_item_view .item_view_details .item_license .license_type{
    margin-bottom: 10px;
}

#single_item_view .item_view_details .item_license .license_type label{
    display: flex;
    align-items: center;
    cursor: pointer;
}

#single_item_view .item_view_details .item_license .license_type label input{
    display: none;
}

#single_item_view .item_view_details .item_license .license_type .check_circle{
    width: 22px;
    height: 22px;
    border: 5px solid #c7c7c7;
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

#single_item_view .item_view_details .item_license .license_type label input:checked + .check_circle{
    border-color: #FCA311;
}

#single_item_view .item_view_details .item_license .license_type label input:checked + .check_circle + span{
    color: #14213D;
}

#single_item_view .item_view_details .item_category_type h3{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

#single_item_view .item_view_details .item_category_type{
    margin-bottom: 40px;
}

#single_item_view .item_view_details .item_category_type h3 span{
    font-weight: 400;
    margin-left: 12px;
}

#single_item_view .item_view_details .video_preview{
    margin-bottom: 40px;
}

#single_item_view .item_view_details .video_preview a{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #14213D;
    display: flex;
    align-items: center;
    transition: all linear .3s;
}

#single_item_view .item_view_details .video_preview a i {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #FCA311;
	color: #fff;
	text-align: center;
	line-height: 24px;
	font-size: 12px;
    letter-spacing: -3px;
    margin-right: 15px;
    transition: all linear .3s;
}

#single_item_view .item_view_details .video_preview a:hover i{
    color: #14213D;
}

.modal-dialog{
    max-width: 50% !important;
}

.modal-body iframe{
    width: 100%;
}

.modal-header{
    border-bottom: none;
    padding-bottom: 0;
}

.modal-content{
    border: none;
    background-color: transparent;
}

.btn-close{
    opacity: 1;
}

.btn-close:focus {
	box-shadow: none;
	opacity: 1;
}

#single_item_view .item_view_details .item_action_btn {
	margin-bottom: 30px;
    margin-right: 12px;
	padding: 7px 14px;
	border-radius: 32px;
	border: none;
	background-color: transparent;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all linear .2s;
    color: #14213D;
}

#single_item_view .item_view_details .item_action_btn i{
    margin-right: 8px;
}

#single_item_view .item_view_details .item_action_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

#single_item_view .item_view_details .action_buy{
    background-color: #14213D;
    color: #fff;
}

#single_item_view .item_view_details .action_buy:hover{
    background-color: #FCA311;
    color: #14213D;
}

#single_item_details{
    margin-top: 60px;
    color: #14213D;
}

#single_item_details .item_product{
    margin-bottom: 40px;
}

#single_item_details .product_title{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

#single_item_details .product_details{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
}

#single_item_details .item_features{
    margin-bottom: 40px;
    padding-right: 20px;
}

#single_item_details .product_tags{
    margin-left: 20px;
}

#single_item_details .product_tags .p_tag {
	color: #14213D;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
    text-transform: capitalize;
	padding: 5px 12px;
	border: 1px solid rgba(20, 33, 61, .3);
	border-radius: 24px;
	display: inline-block;
	margin-right: 15px;
    margin-bottom: 15px;
    transition: all linear .3s;
}

#single_item_details .product_tags .p_tag:hover{
    background-color: rgba(252, 163, 17, .3);
}

#more_items{
    margin-top: 40px;
}

#more_items .m_title{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

#more_items .related_items h5{
    font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
}

#more_items .m_link{
    font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
    color: #FCA311;
    transition: all linear .2s;
}

#more_items .m_link:hover{
    color: #14213D;
}

/* ======================================================================
                            Single item page end
=========================================================================*/


/* ======================================================================
                            Vendor profile page start
=========================================================================*/

#vendor_main{
    margin-top: 75px;
    color: #14213D;
}

#vendor_main .v_box{
    background-color: rgba(20, 33, 61, .05);
    border-radius: 15px;
    padding: 50px 27px 35px 27px;
}

#vendor_main .v_image{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(20, 33, 61, .1);
    margin: 0 auto;
}

#vendor_main .v_image img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

#vendor_main .v_name h1{
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

#vendor_main .vendor_skill{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
}

#vendor_main .v_sub_details{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}

#vendor_main .v_location{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
}

#vendor_main .v_location i{
    margin-right: 8px;
    color: #14213D;
}

#vendor_main .v_follow{
    text-align: right;
    margin-right: 25px;
}

#vendor_main .vendor_follow{
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #14213D;
    background-color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    transition: all linear .3s;
}

#vendor_main .vendor_follow i{
    margin-right: 9px;
    font-size: 14px;
    transition: all linear .3s;
}

#vendor_main .vendor_follow:hover{
    background-color: #14213D;
    color: #FCA311;
}

#vendor_main .f_count{
    text-align: right;
    margin-right: 25px;
}

#vendor_main .follow_details{
    display: flex;
    justify-content: right;
    margin-top: 25px;
}

#vendor_main .follow_details .total_follow{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-left: 15px;
}

#vendor_main .v_ratings{
    display: flex;
    justify-content: right;
    align-items: center;
    margin-top: 12px;
}

#vendor_main .v_ratings p{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

#vendor_main .v_ratings ul{
    margin-left: 15px;
}

#vendor_main .v_ratings ul li{
    display: inline-block;
}

#vendor_main .v_ratings ul li i{
    color: #FCA311;
}

#vendor_main .v_connect{
    margin-left: 25px;
    margin-top: 10px;
}

#vendor_main .v_connect ul li{
    display: inline-block;
    margin-right: 10px;
}

#vendor_main .v_connect ul li i{
    font-size: 17px;
    height: 30px;
    width: 30px;
    border: 1px solid #14213D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear .3s;
}

#vendor_main .v_connect ul li i:hover{
    background-color: #14213D;
    color: #FCA311;
}

#vendor_main .vendor_count{
    margin-right: 25px;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

#vendor_main .vendor_count .product_count{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

#vendor_main .vendor_count .product_count i{
    font-size: 16px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 1px solid rgba(20, 33, 61, .3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear .3s;
}

#vendor_main .vendor_count .vendor_sale{
    display: flex;
    align-items: center;
}

#vendor_main .vendor_count .vendor_sale i{
    font-size: 16px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    border: 1px solid rgba(20, 33, 61, .3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear .3s;
}

#vendor_main .v_count{
    margin-left: 10px;
    font-weight: 600;
}

#product_by{
    margin-top: 70px;
    color: #14213D;
}

#product_by h5{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

#product_by h5 span{
    color: #FCA311;
}

#product_by .item_box{
    display: none;
}

#product_by .end_product{
    display: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* ======================================================================
                            Vendor profile page end
=========================================================================*/

/* ======================================================================
                            Flash Sale page start
=========================================================================*/
#flash_banner{
    text-align: center;
    color: #14213D;
    background: url(../images/flash_sale_banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: rgba(20, 33, 61, .1); */
}

.page_banner_title{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 900;
    padding-top: 100px;
}

.page_banner_description{
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    margin-top: 17px;
}

#flash_banner .flash_counter{
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
    margin-bottom: 90px;
}

#flash_banner .count_time{
    background-color: #14213D;
    width: 135px;
    border-radius: 20px;
}

#flash_banner .flash_counter .count_number{
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #FCA311;
    line-height: 1;
    padding: 10px 0;
}

#flash_banner .flash_counter .count_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding: 0 18px 6px 18px;
}

#flash_category{
    line-height: 1.25;
}

.sort_main{
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.sort_main .mixitup-control-active{
    color: #14213D;
}

.sort_group{
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.sort_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(20, 33, 61, .8);
}

.sort_btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(20, 33, 61, .7);
    margin: 0 10px;
    padding: 6px 16px;
    background: transparent;
}

/* --------------------------- Pagination Start --------------------------- */

#pagination_main{
    margin-top: 40px;
}

.pagination{
    justify-content: center;
}

.page-link {
	border: none;
	color: #14213D;
	height: 30px;
	width: 30px;
	background: rgba(20, 33, 61, .05);
	margin: 0 13px;
	border-radius: 50%;
	font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear .3s;
}

.page-link:hover{
    background-color: #14213D;
    color: #fff;
}

.page-link:focus {
    box-shadow: none;
    background: #14213D;
    color: #FCA311;
  }

.page-item:first-child .page-link {
	border-radius: 50%;
}

.page-item:last-child .page-link {
	border-radius: 50%;
}

/* ======================================================================
                            Flash Sale page end
=========================================================================*/

/* ======================================================================
                            Start Selling page start
=========================================================================*/

#selling_banner{
    /* background-color: rgba(20, 33, 61, .1); */
    background: url(../images/start-selling-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #14213D;
    padding-bottom: 100px;
}

.sale_page_button{
    margin-top: 70px;
    text-align: center;
}

.sale_page_button a{
    padding: 17px 26px;
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	background-color: #14213D;
	border-radius: 32px;
    transition: all linear .3s;
}

.sale_page_button a:hover{
    background-color: #fff;
    color: #14213D;
}

#benefit{
    margin-top: 80px;
    margin-bottom: 80px;
    color: #14213D;
}

.sale_title_small{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

#benefit .benefit_main{
    margin-top: 60px;
}

#benefit .benefit_points{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

#benefit .benefit_points i{
    color: #FCA311;
    margin-right: 20px;
}

#benefit .benefit_points p{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

#become_vendor{
    padding-top: 30px;
    color: #14213D;
}

.sale_title_big{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
}

.sale_page_details{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    text-align: center;
    padding: 0 35px;
    margin-top: 50px;
}

#become_vendor{
    color: #14213D;
}

#become_vendor .sale_page_button{
    text-align: center;
}

#become_vendor .sale_page_button a{
    background-color: #fff;
    border: 2px solid #14213D;
    color: #14213D;
    transition: all linear .3s;
    padding: 13px 22px;
}

#become_vendor .sale_page_button a:hover{
    background-color: #14213D;
    color: #fff;
}

#payment_breakdown{
    margin-top: 100px;
    background-color: #14213D;
    padding-bottom: 60px;
    color: #14213D;
    text-align: center
}

#payment_breakdown .sale_title_big{
    color: #FCA311;
    padding-top: 60px;
    padding-bottom: 50px;
}

#payment_breakdown .payment_table{
    color: #fff;
    padding-bottom: 50px;
    text-align: center;
}

.payment_download_btn{
    display: inline-block;
    padding: 13px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #14213D;
    background-color: #fff;
    border-radius: 32px;
    transition: all linear .3s;
    margin-top: 50px;
}

.payment_download_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

#payment_breakdown .payment_table thead th{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    padding-bottom: 35px;
    border-bottom-color: rgba(255, 255, 255, .1);
}

#payment_breakdown .payment_table tbody th,td{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    border-bottom-color: rgba(255, 255, 255, .1);
    padding: 12px 0;
}

#payment_breakdown .payment_table tbody td{
    padding: 12px 0;
    border-bottom-color: rgba(255, 255, 255, .1);
}

#payment_breakdown .payment_table tbody .last_col td{
    padding: 27px 0;
}

/* #payment_breakdown .payment_table tbody .last_col th{
    border-bottom: none;
}

#payment_breakdown .payment_table tbody .last_col td{
    border-bottom: none;
} */

#sale_items{
    margin-top: 80px;
    color: #14213D;
}

#sale_items .sale_items_details{
    margin-bottom: 70px;
}

.sale_item_box{
    padding-right: 20px;
}

.sale_item_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
}

.sale_item_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.7;
}

#apply_vendor{
    background-color: rgba(20, 33, 61, .1);
    padding: 60px;
    color: #14213D;
}

#apply_vendor .apply_steps{
    margin-top: 75px;
}

#apply_vendor .apply_steps .steps_details{
    padding-left: 65px;
    position: relative;
    z-index: 111;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

#apply_vendor .apply_steps .steps_main{
    position: relative;
}

#apply_vendor .apply_steps .step_number{
    position: absolute;
    top: -30px;
    left: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 185px;
    font-weight: 900;
    line-height: 1;
    color: rgb(255, 255, 255, .7);
    z-index: 110;
}

#vendor_trait{
    margin-top: 80px;
    color: #14213D;
}

#vendor_trait .vendor_trait_main{
    margin-top: 70px;
}

#vendor_agreement{
    margin-top: 50px;
}

#vendor_payment{
    margin-top: 80px;
    background-color: rgba(20, 33, 61, .1);
    padding-top: 60px;
    padding-bottom: 40px;
    color: #14213D;
}

#vendor_payment .payment_policy{
    margin-top: 50px;
    padding: 0 20px;
}

#vendor_payment .payment_policy_text{
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

#vendor_payment .payment_policy_text i{
    color: #FCA311;
    margin-right: 20px;
}

#vendor_payment .payment_policy_text p{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

#next_level{
    margin-top: 100px;
    margin-bottom: 120px;
}

#next_level .sale_page_button a{
    padding: 13px 22px;
}

/* 
======================================================================
                            Start Selling page end
=========================================================================*/

/* ======================================================================
                            Sign in page start
=========================================================================*/

#signin{
    margin-top: 65px;
    color: #14213D;
}

.sign_text{
    margin-top: 80px;
    position: relative;
}

/* #signin .sign_text .sign_in_img {
	position: absolute;
	top: 11px;
	left: -54px;
}

#signin .sign_text .sign_in_img img {
	width: 462px;
	height: auto;
	opacity: .1;
} */

.sign_text h1{
    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FCA311;
}

.sign_text h3{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.sign_text .text_point_main{
    margin-top: 80px;
    margin-left: 60px;
}

.sign_text .text_point{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.sign_text .text_point i{
    color: #FCA311;
    margin-right: 20px;
}

.sign_text .text_point h6{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.sign_form{
    background-color: rgba(20, 33, 61, .03);
    border-radius: 12px;
    padding: 30px;
}

.sign_form h2{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #14213D;
    margin-bottom: 35px;
}

.form_group p{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form_group .f_input {
	padding: 14px 19px;
	width: 100%;
	border-radius: 28px;
	border: 1px solid rgba(20, 33, 61, .5);
	margin-bottom: 35px;
    outline: none;
    resize: none;
}

.form_group .f_input::placeholder{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(20, 33, 61, .5);
}

.form_group input[type="checkbox"]{
    height: 18px;
    width: 18px;
}

.form_group .l_checkbox{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-left: 12px;
}

.f_check{
    margin-top: 25px;
}

.s_btn{
    margin-top: 13px;
    width: 100%;
    padding: 14px 0;
    background-color: #14213D;
    color: #FCA311;
    border: none;
    border-radius: 28px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all linear .3s;
}

.s_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

.form_bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.form_bottom a{
    font-weight: 600;
    color: #14213D;
    transition: all linear .3s;
}

.form_bottom a:hover{
    color: #FCA311;
}

/* ======================================================================
                            Sign in page end
=========================================================================*/


/* ======================================================================
                            Sign up page start
=========================================================================*/

#signup{
    margin-top: 65px;
    color: #14213D;
}

.s_up{
    margin-left: 50px;
}

.group_flex{
    display: flex;
    justify-content: space-between;
}

.group_box{
    width: 47%;
}

.group_box select{
    appearance: none;
}

.f_bottom_up{
    justify-content: right;
}

#signup .sign_text {
    position: relative;
}

/* #signup .sign_text .sign_up_img {
	position: absolute;
	top: 11px;
	left: 27px;
}

#signup .sign_text .sign_up_img img {
	width: 462px;
	height: auto;
	opacity: .1;
} */

/* ======================================================================
                            Sign up page end
=========================================================================*/


/* ======================================================================
                            404 page start
=========================================================================*/

#error{
    margin: 75px 0;
}

#error .error_text{
    margin-right: 150px;
    margin-top: 20px;
}

#error .error_text h1{
    font-family: 'Raleway', sans-serif;
    font-size: 37px;
    font-weight: 800;
    color: #14213D;
    margin-bottom: 60px;
}

#error .error_text h2{
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #14213D;
    margin-bottom: 90px;
}

#error .error_text a {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #14213D;
	background-color: #FCA311;
	padding: 14px 22px;
	border-radius: 30px;
	line-height: 1;
    transition: all linear .3s;
}

#error .error_text a:hover{
    background-color: #14213D;
    color: #FCA311;
}

#error .error_img{
    margin: 0 75px;
}

#error .error_img img{
    display: block;
    width: 100%;
}

/* ======================================================================
                            404 page end
=========================================================================*/

/* ======================================================================
                            contact page start
=========================================================================*/
#contact{
    margin-top: 60px;
    color: #14213D;
}

.contact_details a{
    color: #fff;
}

#contact .contact_details_title{
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #FCA311;
    margin-bottom: 70px;
    margin-top: 30px;
}

#contact .contact_details_group{
    display: flex;
    margin-bottom: 60px;
}

#contact .contact_details_icon i{
    margin-right: 20px;
}

#contact .contact_sub_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

#contact .contact_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
}

#contact .contact_details_bottom{
    padding-top: 25px;
}

#contact .contact_details_bottom h3{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    color: #FCA311;
}

#contact .contact_details_bottom h4{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

#contact .contact_form{
    background-color: rgba(20, 33, 61, .03);
    padding: 30px;
    border-radius: 12px;
}

#contact .contact_form_title{
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #14213D;
    margin-bottom: 40px;
}

/* ======================================================================
                            contact page end
=========================================================================*/


/* ======================================================================
                            Cart page start
=========================================================================*/

#cart{
    margin-top: 60px;
    color: #14213D;
}

#cart .cart_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cart .cart_top_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    font-weight: 800;
}

#cart .cart_main{
    margin-top: 35px;
    border-top: 1px solid rgba(42, 70, 131, 0.2);
    border-bottom: 1px solid rgba(42, 70, 131, 0.2);
    padding: 25px 5px 0 5px;
}

#cart .table{
    color: #14213D;
}

#cart .cart_table_heading{
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 800;
}

#cart .table .cart_item_name{
    padding-left: 50px;
    padding-right: 40px;
}

#cart .cart_item_details{
    padding-top: 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

#cart .remove_icon{
    text-align: center;
}

#cart .remove_icon i{
    color: #14213D;
    transition: all linear .2s;
    cursor: pointer;
}

#cart .remove_icon i:hover{
    color: #FCA311;
}

#cart .cart_coupon{
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

#cart .coupon_field input{
    border: none;
    border-bottom: 1px solid rgba(42, 70, 131, 0.2);
}

#cart .coupon_field input:focus-visible{
    outline: none;
}

#cart .coupon_button{
    margin-left: 30px;
}

#cart .c_btn{
    padding: 12px 15px;
    border-radius: 30px;
    border: 2px solid #14213D;
    background-color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #14213D;
    line-height: 1;
    transition: all linear .3s;
}

#cart .c_btn:hover{
    background-color: #14213D;
    color: #FCA311;
}

#cart .cart_count{
    margin-top: 60px;
}

#cart .checkout_btn{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

#cart .checkout_btn .check_btn{
    background-color: #14213D;
    color: #fff;
    transition: all linear .3s;
}

#cart .checkout_btn .check_btn:hover{
    background-color: #FCA311;
    color: #14213D;
    border-color: #FCA311;
}

#cart .cart_count_title{
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

#cart .cart_count_value{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-top: 20px;
}

/* ======================================================================
                            Cart page end
=========================================================================*/

/* ======================================================================
                            Checkout page start
=========================================================================*/

#checkout{
    margin-top: 80px;
    color: #14213D;
}

#checkout .checkout_title p{
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    font-weight: 800;
}

#checkout .order_details_main{
    margin-top: 40px;
    border-top: 1px solid rgba(20, 33, 61, .2);
}

#checkout .order_info{
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

#checkout .order_item_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #14213D;
}

#checkout .order_item_name{
    width: 60%;
}

#checkout .order_item_price{
    width: 40%;
    text-align: right;
}

#checkout .order_total{
    border-top: 1px solid rgba(20, 33, 61, .2);
}

#checkout .total_text{
    font-weight: 700;
}

#checkout .payment_method_main{
    background-color: rgba(20, 33, 61, .03);
    border-radius: 12px;
    padding: 5px 30px 40px 35px;
    margin-top: 40px;
}

#checkout .method_select{
    margin: 40px 0;
}

#checkout .method_select label{
    display: flex;
    align-items: center;
    cursor: pointer;
}

#checkout .method_select label input{
    display: none;
}

#checkout .method_select .check_circle{
    width: 22px;
    height: 22px;
    border: 5px solid #c7c7c7;
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

#checkout .method_select label input:checked + .check_circle{
    border-color: #FCA311;
}

#checkout .method_select span{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #95989A
}

#checkout .method_select label input:checked + .check_circle + span{
    color: #14213D;
}


#checkout .confirm_btn {
    padding: 14px 25px;
    border-radius: 30px;
    border: none;
    background-color: #14213D;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    transition: all linear .3s;
}

#checkout .confirm_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}
/* ======================================================================
                            Checkout page end
=========================================================================*/

/* ======================================================================
                            Purchase page start
=========================================================================*/

#purchase{
    margin-top: 80px;
    color: #14213D;
}

#purchase .purchase_id{
    margin-bottom: 50px;
}

#purchase .p_text_semi{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

#purchase .p_text_bold{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
}

#purchase .transaction_details{
    margin-top: 30px;
}

#purchase .t_details_box{
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

#purchase .p_text_regular{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

#purchase .p_thanks{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 30px;
    padding-top: 20px;
}

#purchase .back_btn{
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    background-color: #14213D;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    transition: all linear .3s;
}

#purchase .back_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

#purchase .back_home{
    position: relative;
}

#purchase .p_icon{
    font-size: 200px;
    position: absolute;
    top: -100px;
    left: 30%;
    color: rgba(20, 33, 61, .05);
}

/* ======================================================================
                            Purchase page end
=========================================================================*/

/* ======================================================================
        Payment policy, Privacy policy, Terms conditions page start
=========================================================================*/

#payment_policy{
    margin-top: 80px;
    color: #14213D;
}

.p_title{
    font-family: 'Raleway', sans-serif;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px;
}

.p_box{
    margin-top: 50px;
}

.p_sub_title{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FCA311;
}

.p_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin: 15px 0;
}

.p_semi{
    font-weight: 600;
}

.p_list{
    margin: 8px 0;
}

.p_list_main ol li{
    list-style: lower-roman !important;
}

.p_list_main ul li{
    list-style: square !important;
}

#payment_policy .payment_breakdown{
    background-color: rgba(20, 33, 61, .05);
    padding: 60px 0 65px 0;
    margin-top: 50px;
    text-align: center;
}

#payment_policy .payment_breakdown .p_box{
    margin-top: 0;
}

#payment_policy .payment_table{
    color: #14213D;
    text-align: center;
}

#payment_policy .payment_table thead th {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    padding-bottom: 30px;
    border-bottom-color: rgba(20, 33, 61, .2);
}

#payment_policy .payment_table tbody th, td {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 2;
    border-bottom-color: rgba(20, 33, 61, .2);
    padding: 12px 0;
}

#payment_policy .payment_breakdown .p_box a{
    background-color: #14213D;
}

#payment_policy .payment_breakdown .p_box a:hover{
    color: #14213D;
    background-color: #FCA311;
}

.p_box a{
    color: #FCA311;
    font-weight: 600;
    transition: all linear .2s;
}

.p_box a:hover{
    color: #14213D;
}

#privacy_policy{
    margin-top: 80px;
    color: #14213D;
}

#terms_conditions{
    margin-top: 80px;
    color: #14213D;
}

#refund_policy{
    margin-top: 80px;
    color: #14213D;
}

/* ======================================================================
        Payment policy, privacy policy, Terms conditions page end
=========================================================================*/

/* ======================================================================
                            Top authors page start
=========================================================================*/

#top_authors{
    margin-top: 80px;
    color: #14213D;
}

#top_authors .a_title{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}

#top_authors .author_box{
    background-color: rgba(20, 33, 61, .1);
    padding: 25px 20px;
    border-radius: 12px;
    position: relative;
    margin: 30px 0;
}

#top_authors .author_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

#top_authors .author_img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(20, 33, 61, .1);
}

#top_authors .author_img img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

#top_authors .author_name{
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 700;
}

#top_authors .author_skill{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

#top_authors .author_count{
    display: flex;
    justify-content: space-between;
}

#top_authors .product_count{
    display: flex;
    align-items: center;
}

#top_authors .count_icon{
    font-size: 15px;
}

#top_authors .product_sale{
    display: flex;
    align-items: center;
}

#top_authors .author_details .product_count i {
    margin-right: 10px;
}

#top_authors .author_details .v_count{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    /* margin-left: 10px; */
}

#top_authors .author_ratings{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

#top_authors .author_ratings ul{
    display: flex;
    margin-left: 10px;
}

#top_authors .author_ratings ul li i{
    color: #FCA311;
}

#top_authors .follow_details{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#top_authors .total_follow{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px;
}

#top_authors .v_sub_details{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
}

#top_authors .author_overlay{
    height: 100%;
    width: 100%;
    background-color: rgba(20, 33, 61, .8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all linear .3s;
}

#top_authors .author_box:hover .author_overlay{
    opacity: 1;
}

#top_authors .author_overlay a{
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #14213D;
    background-color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    transition: all linear .3s;
}

#top_authors .author_overlay a:hover{
    background-color: #FCA311;
}

/* ======================================================================
                            Top authors page end
=========================================================================*/

/* ======================================================================
                            About us page start
=========================================================================*/

#about_us{
    margin-top: 80px;
    color: #14213D;
}

#about_us .about_title{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 800;
}

#about_us .about_main p{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 30px;
    text-align: justify;
}

#about_us .about_sub_title{
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-top: 60px;
    margin-bottom: 30px;
}

#about_us .about_tag_line{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 30px;
}

#about_us .text_point{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#about_us .text_point i{
    color: #FCA311;
    font-size: 15px;
}

#about_us .text_point h6{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-left: 15px;
}


/* ======================================================================
                            About us page end
=========================================================================*/

/* ======================================================================
                            Blog main page start
=========================================================================*/

#blog_box{
    margin-top: 20px;
    color: #14213D;
}

.single_blog{
    margin-top: 80px;
}

.single_blog .blog_banner .blog_banner_img{
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.single_blog .blog_data{
    display: flex;
    margin-top: 50px;
    margin-bottom: 20px;
}

.single_blog .blog_data .blog_count{
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.single_blog .blog_data .blog_count i{
    font-size: 15px;
    color: rgba(20, 33, 61, .7);
}

.single_blog .data_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-left: 10px;
    color: rgba(20, 33, 61, .7);
}

.blog_details .blog_title{
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #14213D;
    transition: all linear .3s;
}

.blog_details .blog_title:hover{
    color: #FCA311;
}

.blog_details .blog_des{
    margin-top: 40px;
    margin-bottom: 55px;
}

.blog_details .b_des_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
}

.single_blog .more_btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #14213D;
    border: 2px solid #14213D;
    background-color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    transition: all linear .3s;
}

.single_blog .more_btn:hover{
    background-color: #14213D;
    color: #FCA311;
}

.blog_sidebar{
    margin-top: 80px;
    margin-left: 50px;
}

.blog_sidebar .sidebar_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FCA311;
}

.blog_category_main{
    background-color: rgba(20, 33, 61, .1);
    padding: 12px 25px;
    border-radius: 12px;
}

.blog_category_main li{
    padding: 13px 0;
    border-bottom: 1px solid #fff;
}

.blog_category_main li:hover .category_text{
    color: #FCA311;
}

.blog_category_main li:last-child{
    border-bottom: none;
}

.blog_category_main .category_box{
    display: flex;
    justify-content: space-between;
}

.blog_category_main .category_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #14213D;
    transition: all linear .3s;
}

.sidebar_section{
    margin-top: 80px;
}

.sidebar_list .sidebar_blog_img{
    width: 30%;
}

.sidebar_list .sidebar_blog_title{
    width: 70%;
}

.sidebar_list .sidebar_blog_img img{
    display: block;
    width: 100%;
    height: 65px;
    object-fit: cover;
    object-position: center;
    border-radius: 9px;
    margin-top: 7px;
}

.sidebar_blog{
    display: flex;
    margin-bottom: 30px;
}

.sidebar_blog .sidebar_blog_title{
    padding-left: 15px;
}

.sidebar_blog .sidebar_blog_title .s_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(20, 33, 61, .8);
    transition: all linear .3s;
}

.sidebar_blog .sidebar_blog_title .s_title:hover{
    color: #14213D;
}

.blog_tag .blog_tag_btn{
    color: rgba(20, 33, 61, .8);
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 12px;
    border: 1px solid rgba(20, 33, 61, .3);
    border-radius: 24px;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all linear .3s;
}

.blog_tag .blog_tag_btn:hover{
    background-color: rgba(252, 163, 17, .3);
}

.blog_share{
    display: flex;
    align-items: center;
}

.blog_share .share_text{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-right: 20px;
}

.blog_share_icon a{
    color: #14213D;
    margin-left: 10px;
}

.blog_share_icon a i{
    font-size: 16px;
    width: 30px;
    height: 30px;
    background-color: rgb(20, 33, 61, .1);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    transition: all linear .3s;
}

.blog_share_icon a:hover i{
    color: #FCA311;
    background-color: #14213D;
}

.blog_comment{
    background-color: rgba(20, 33, 61, .1);
    padding: 15px;
    border-radius: 15px;
    margin-top: 55px;
}

.blog_comment .comment_count{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.reply_main{
    margin-top: 55px;
}

.reply_main .reply_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.reply_main .reply_title{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.reply_main .reply_box .reply_name{
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(112, 112, 112, .7);
}

.reply_main .reply_box .reply_name:focus-visible{
    outline: none;
}

.reply_main .reply_box .reply_name::placeholder{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(20, 33, 61, .5);
}

.reply_main .reply_box textarea{
    width: 100%;
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(112, 112, 112, .7);
    resize: none;
}

.reply_main .reply_box textarea:focus-visible{
    outline: none;
}

.reply_main .reply_box textarea::placeholder{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(20, 33, 61, .5);
}

.reply_main .reply_box .r_btn{
    width: 100%;
    display: flex;
    justify-content: right;
}

.reply_main .reply_box .reply_btn{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background-color: #14213D;
    padding: 12px 32px;
    border-radius: 25px;
    border: none;
    transition: all linear .3s;
}

.reply_main .reply_box .reply_btn:hover{
    color: #FCA311;
}

/* ======================================================================
                            Blog main page end
=========================================================================*/


/* ======================================================================
                            Profile Setting page start
=========================================================================*/

#profile_nav{
    margin-bottom: 40px;
}

#profile_nav .navbar{
    border-bottom: 0;
}

#profile_nav .nav-link{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #14213D;
    border-radius: 25px;
    padding: 6px 12px;
    background: rgba(20, 33, 61, .08);
    transition: all linear .3s;
}

#profile_nav .active{
    background: #FCA311;
}

#profile_nav .nav-link i{
    margin-right: 12px;
}

#profile_nav .nav-link:hover{
    background: rgba(20, 33, 61, .3);
}

#profile_nav .navbar-nav{
    width: 100%;
    justify-content: space-between;
}

#profile_setting{
    color: #14213D;
    padding-top: 40px;
}

.profile_title{
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 40px;
}

.profile_sub_title{
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 40px;
}

.profile_info .form_group .f_margin_less{
    margin-bottom: 15px;
}

.profile_info .form_group .i_details{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #95989A;
    margin-bottom: 35px;
}

.profile_info .form_group .i_details span{
    color: #14213D;
}

.profile_info .form_group select{
    appearance: none;
}

.profile_info .form_group .select_group{
    position: relative;
}

.profile_info .form_group .select_group::after{
    position: absolute;
    top: 17px;
    right: 17px;
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f078";
    pointer-events: none;
}

.p_btn{
    margin-top: 15px;
    padding: 10px 36px;
    background-color: #14213D;
    color: #fff;
    border: none;
    border-radius: 28px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all linear .3s;
}

.p_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

#profile_setting .profile_left{
    background-color: rgba(20, 33, 61, .1);
    padding: 30px;
    border-radius: 25px;
}

#profile_setting .profile_left .p_sixe_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}

#profile_setting .profile_left .profile_social{
    margin-top: 80px;
}

#profile_setting .profile_left .profile_social .p_social_group{
    margin-bottom: 30px;
}

#profile_setting .profile_left .profile_social .p_social_group i{
    width: 30px;
    height: 30px;
    background-color: #14213D;
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-right: 25px;
}

#profile_setting .profile_left .profile_social .p_social_group .social_input_field{
    border: 0;
    border-bottom: 1px solid rgba(20, 33, 61, .6);
    background: transparent;
    outline: none;
    width: 72%;
}

#profile_setting .profile_left .email_settings{
    margin-top: 80px;
}

#profile_setting .profile_left .email_settings .email_notification_group{
    display: flex;
    margin-bottom: 30px;
}

#profile_setting .profile_left .email_settings .email_notification_group .notification_check{
    margin-right: 25px;
}

#profile_setting .profile_left .email_settings .email_notification_group .nofication_details{
    font-family: 'Open Sans', sans-serif;
}

#profile_setting .profile_left .email_settings .email_notification_group .nofication_details .n_text{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

#profile_setting .profile_left .email_settings .email_notification_group .nofication_details .n_description{
    font-size: 15px;
    font-weight: 400;
}

/* ======================================================================
                            Profile Setting page end
=========================================================================*/

/* ======================================================================
                            Profile purchase page start
=========================================================================*/

#pofile_purchase{
    color: #14213D;
    padding-top: 40px;
}

#pofile_purchase .purchase_title{
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 50px;
}

#pofile_purchase .purchase_center{
    text-align: center;
}

/* ======================================================================
                            Profile purchase page end
=========================================================================*/


/* ======================================================================
                            Coupon page start
=========================================================================*/

#add_coupon_btn{
    margin: 60px 0;
}

#add_coupon_btn .coupon_btn{
    display: flex;
    justify-content: flex-end;
}

#add_coupon_btn .cou_btn{
    padding: 10px 15px;
    background-color: #14213D;
    border-radius: 30px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all linear .3s;
}

#add_coupon_btn .cou_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

#coupon_list .coupon_table {
	color: #14213D;
	margin-bottom: 80px;
}

#coupon_list .coupon_table thead tr{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

#coupon_list .coupon_table tbody th, td{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

#coupon_list .coupon_table tbody .td_icon{
    color: #14213D;
    margin-right: 20px;
    padding: 8px 0;
    transition: all linear .3s;
}

#coupon_list .coupon_table tbody .td_icon:hover{
    color: #FCA311;
}

#coupon_list .coupon_table tbody .coupon_active {
	padding: 5px 13px 6px 13px;
	background-color: #FCA311;
	color: #14213D;
	border-radius: 20px;
	line-height: 1;
}

/* ======================================================================
                            Coupon page end
=========================================================================*/

/* ======================================================================
                            Add Coupon page start
=========================================================================*/

#add_coupon {
    padding-top: 20px;
}

#add_coupon .add_coupon_title {
	font-family: 'Raleway', sans-serif;
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 40px;
}

#add_coupon form{
    background-color: rgba(20, 33, 61, .03);
    border-radius: 21px;
    padding: 35px;
}

#add_coupon .group_box{
    width: 45%;
}

#add_coupon .c_btn {
	margin-top: 25px;
	padding: 11px 55px;
	background-color: #14213D;
	color: #fff;
	border: none;
	border-radius: 35px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	transition: all linear .3s;
}

#add_coupon .c_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

/* ======================================================================
                            Add Coupon page end
=========================================================================*/


/* ======================================================================
                            Sales page start
=========================================================================*/

#sales{
    color: #14213D;
    padding-top: 50px;
}

#sales .sales_main{
    margin-bottom: 40px;
}

#sales .sales_count_box{
    text-align: center;
    background-color: rgba(20, 33, 61, .07);
    padding: 45px 20px;
    border-radius: 20px;
    margin: 0 20px;
}

#sales .sales_count{
    font-family: 'Open Sans', sans-serif;
	font-size: 25px;
	font-weight: 700;
    margin-bottom: 25px;
}

#sales .total_title{
    display: flex;
    justify-content: center;
    align-items: center;
}

#sales .total_title i{
    height: 25px;
    width: 25px;
    background-color: #14213D;
    border-radius: 50%;
    color: #fff;
    line-height: 25px;
    text-align: center;
    font-size: 13px;
    margin-right: 12px;
}

#sales .total_title .sales_text{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

#sales .sales_table{
    padding-top: 50px;
    padding-bottom: 30px;
}

/* ======================================================================
                            Sales page end
=========================================================================*/


/* ======================================================================
                            Manage item start
=========================================================================*/

#upload_item_btn .upload_btn_main{
    display: flex;
    justify-content: flex-end;
}

#upload_item_btn .up_btn {
	margin-top: 10px;
    margin-bottom: 25px;
	padding: 10px 15px;
    background-color: #14213D;
    border-radius: 30px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all linear .3s;
}

#upload_item_btn .up_btn:hover{
    background-color: #FCA311;
    color: #14213D;
}

#upload_item_btn .dropdown-toggle::after {
	display: none;
}

#upload_item_btn .dropdown-menu {
    min-width: 120px !important;
}


#manage_item .item_view .manage_item_top i{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    color: #fff;
    background-color: #FCA311;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
}

#manage_item .dropdown-toggle::after {
	display: none;
}

#manage_item .manage_item_btn .show{
	position: absolute;
	top: 34px;
    left: 10px;
	margin: 0px;
	transform: translate(0px, 6px);
}

#manage_item .dropdown-menu {
    min-width: 60px !important;
}

/* ======================================================================
                            Manage item end
=========================================================================*/


/* ======================================================================
                            Upload Item start
=========================================================================*/

#upload_items {
	color: #14213D;
	padding-top: 10px;
}

#upload_items .item_main_title {
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	font-weight: 900;
	margin-bottom: 40px;
}

#upload_items .item_sub_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

#upload_items .item_sub_title span{
    font-size: 14px;
    font-weight: 400;
    color: rgba(20, 33, 61, .7);
    margin-left: 10px;
}

#upload_items .upload_files{
    margin-top: 40px;
}

#upload_items .upload_files .form_group{
    margin-bottom: 40px;
}


#upload_items .file_upload_field{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #14213D;
    background-color: #fff;
    border-radius: 50px;
    width: 100%;
    border: 1px solid rgba(20, 33, 61, .5);
    outline: none;
    height: 55px;
    position: relative;
}

#upload_items ::-webkit-file-upload-button{
    color: #14213D;
    background-color: #FCA311;
    border: none;
    border-radius: 0 50px 50px 0;
    outline: none;
    padding: 15px 15px;
    position: absolute;
    top: 0;
    right: -5px;
    transition: all linear .3s;
    cursor: pointer;
}


#upload_items input[type=file]::file-selector-button {
    color: #14213D;
    background-color: #FCA311;
    border: none;
    border-radius: 0 50px 50px 0;
    outline: none;
    padding: 15px 15px;
    position: absolute;
    top: 0;
    right: -5px;
    cursor: pointer;
}

#upload_items input[type='file'] {
    color: #14213D;
    padding: 14px 20px;
}

#upload_items .form_group select {
	appearance: none;
}

#upload_items .form_group .video_input {
	margin-bottom: 0;
}

#upload_items .category_attri .item_sub_title span {
	margin-left: 0;
}

#upload_items .category_attri .area_tags{
    margin-top: 40px;
}

#upload_items .support_update{
    margin-top: 60px;
}

#upload_items .item_price{
    margin-top: 40px;
}

#upload_items .item_price .item_sub_title span {
	margin-left: 0;
}

#upload_items .group_license{
    margin-bottom: 35px;
}

#upload_items .group_license .f_input{
    margin-bottom: 15px;
}

#upload_items .p_btn{
    color: #fff;
    transition: all linear .3s;
}

#upload_items .p_btn:hover{
    color: #14213D;
}

#upload_items .l_main{
    background-color: rgba(20, 33, 61, .1);
    padding: 30px 26px;
    border-radius: 19px;
    margin-bottom: 40px;
}

#upload_items .l_group{
    margin-bottom: 47px;
}

#upload_items .l_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

#upload_items .l_sub_title{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

#upload_items .l_sub_title span{
    font-weight: 400;
    margin-right: 10px;
}

/* ======================================================================
                            Upload Item end
=========================================================================*/


/* ======================================================================
                            Withdrawals page end
=========================================================================*/

#withdrawal{
    margin-top: 50px;
    color: #14213D;
}

#withdrawal .w_title_regular{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

#withdrawal .w_title_bold{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
}

#withdrawal .withdrawal_main{
    margin-top: 60px;
}

#withdrawal .withdrawal_main .license_type{
    margin-top: 40px;
    margin-bottom: 40px;
}

#withdrawal .withdrawal_main .license_type label{
    display: flex;
    align-items: center;
    cursor: pointer;
}

#withdrawal .withdrawal_main .license_type label input{
    display: none;
}

#withdrawal .withdrawal_main .license_type .check_circle{
    width: 22px;
    height: 22px;
    border: 5px solid #c7c7c7;
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

#withdrawal .withdrawal_main .license_type label input:checked + .check_circle{
    border-color: #FCA311;
}

#withdrawal .withdrawal_main .license_type label input:checked + .check_circle + span{
    color: #14213D;
}

.bank_example p{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.withdrawals_options{
    background-color: rgba(20, 33, 61, .05);
    padding: 40px 30px 20px 30px;
    border-radius: 19px;
}

.withdrawal_amount{
    margin-top: 40px;
}

.withdrawal_amount h3{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-top: 40px;
}

.withdrawal_amount h4{
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-top: 40px;
}

.withdrawal_amount h4 span{
    font-weight: 600;
}

.withdraw_input{
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.withdraw_input label{
    margin-right: 15px;
}

.withdraw_input .f_input{
    height: 50px;
    border-radius: 25px;
    border: transparent;
    background-color: rgba(20, 33, 61, .1);
    padding: 18px;
    outline: none;
}

.w_btn {
	padding: 11px 18px;
	transition: all linear .3s;
	margin-top: 70px;
}

.withdrawal_history{
    margin-top: 80px;
}

.withdrawal_history table{
    margin-top: 45px;
    color: #14213D;
}

.withdrawal_history table .w_action{
    text-align: center;
}

.withdrawal_history table .w_action i{
    transition: all linear .3s;
}

.withdrawal_history table .w_action:hover i{
    color: #FCA311;
}
/* ======================================================================
                            Withdrawals page start
=========================================================================*/

/* ======================================================================
                            User guideline page start
=========================================================================*/
#user_guideline {
    margin-top: 90px;
}

#user_guideline .guideline_questions {
    background-color: #E7E8EB;
    color: rgba(20, 33, 61, .7);
    padding: 18px 25px;
    border-radius: 12px;
    margin-left: 40px;
    margin-right: 40px;
}

/* #user_guideline .guideline_questions li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    line-height: 2;
    transition: all linear .3s;
} */

#user_guideline .guideline_questions li:hover {
    color: #14213D;
}

#user_guideline .guideline_questions li:last-child {
    border-bottom: none;
}


.video_box{
    padding: 0 60px;
}

/*  VIDEO PLAYER CONTAINER */

.vid-container {
    position: relative;
    padding-bottom: 34%;
    padding-top: 30px; 
    height: 0; 
    width:65%;
    float:left;
}

.vid-container iframe,
.vid-container object,
.vid-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 360px;
    -webkit-box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.6);
}


/*  VIDEOS PLAYLIST  */

.vid-list-container {
    width: 35%;
    overflow: hidden;
    float: left;
    padding-right: 30px;
}

.vid-list-container:hover, .vid-list-container:focus {
    overflow-y: auto;
}

ol#vid-list {
    margin: 0;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 12px;
}

ol#vid-list li {
    list-style: none;
}

ol#vid-list li a {
    text-decoration: none;
    display:block;
    padding: 20px;
}

ol#vid-list li a:hover .desc{
    color: #ff9d00;
    margin-left: 10px;
}

.active-vid { 
    background:#3A3A3A;
}

#vid-list .desc {
    color: #14213D;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 2;
    transition: all linear .2s;
}


/* ======================================================================
                            User guideline page end
=========================================================================*/