/*Custom CSS*/

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* FRAME ===================================================================================== */
.full-frame {
    margin: 0;
    padding: 0;
    width: 100%;.login-section
    height: 100%;
    background-color: #edeef2;
}

/* HEADER */
.main-header {
    background-color: #1d2b36;
    min-height: 60px;
    max-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 1023px) {
    .main-header {
        min-height: auto;
        max-height: none;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.select-section {
    font-size: 18px;
    color: #17a2b9;
}

@media only screen and (max-width: 1023px) {
    .select-section {
        display: none;
    }
}

.brand-section {
    min-width: 280px;
    max-width: 280px;
}

@media only screen and (max-width: 1023px) {
    .brand-section {
        min-width: auto;
        max-width: none;
    }

    .brand-section .brand-logo {
        display: none;
    }

    .brand-title {
        margin-left: 0 !important;
    }
}

.brand-link {
    display: flex;
    align-items: center;
    margin-left: 30px;
    text-decoration: none;
}

@media only screen and (max-width: 1023px) {
    .brand-link {
        margin-left: 0px;
    }
}

.brand-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
}

.brand-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 280px);
}

@media only screen and (max-width: 1023px) {
    .header-right {
        width: auto;
    }
}

.header-nav .nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    align-items: center;
    list-style-type: none;
}

.header-nav .nav-item {
    margin: 0 0 0 10px;
    padding: 0;
}

@media only screen and (max-width: 1023px) {
    .header-nav .nav-item {
        margin: 0 0 0 0;
    }
}

.header-nav .nav-link {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.header-nav .nav-link .bell-number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    background-color: #EA4335;
    border-radius: 50%;
    font-size: 11px;
    top: -2px;
    right: -2px;
}

.header-nav .nav-link .question-number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    background-color: #33A952;
    border-radius: 50%;
    font-size: 11px;
    top: -2px;
    right: -2px;
}

.header-nav .nav-link .bullhorn-number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    background-color: #1A73E8;
    border-radius: 50%;
    font-size: 11px;
    top: -2px;
    right: -2px;
}

.header-nav .nav-link .book-number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
    background-color: #FABC02;
    border-radius: 50%;
    font-size: 11px;
    top: -2px;
    right: -2px;
}

.user-account img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
}

.main-content {
    display: flex;
    height: calc(100vh - 60px);
}

@media only screen and (max-width: 1023px) {
    .main-content {
        flex-direction: column;
        height: auto;
    }
}

/* SIDEBAR */
.sidebar-section {
    background-color: #1d2b36;
    height: 100%;
    min-width: 280px;
    max-width: 280px;
    position: relative;
}

@media only screen and (max-width: 1023px) {
    .sidebar-section {
        height: auto;
        min-width: 100%;
        max-width: 100%;
    }
}

.sidebar-inner .nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.sidebar-inner .nav-item {
    margin: 0;
    padding: 0;
}

.sidebar-inner .nav-link {
    display: block;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 1023px) {
    .sidebar-inner .nav-link {
        padding: 15px 15px;
    }
}

.sidebar-inner .nav-link.active {
    background-color: #17a2b9;
}

/* CONTENT */
.content-section {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

@media only screen and (max-width: 1023px) {
    .content-section {
        padding: 15px;
    }
}

.content-inner {
    width: 100%;
    height: 100%;
}

.content-top {
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-top .left-section {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.content-top .left-section .custom-label {
    margin-right: 10px;
}

.content-top .right-section {
    display: flex;
    align-items: center;
}

.content-top .right-section .search .custom-form-control {
    min-width: 150px;
    max-width: 150px;
}

@media only screen and (max-width: 1023px) {
    .content-top .right-section .search .custom-form-control {
        min-width: 75px;
        max-width: 75px;
    }
}

.content-top .right-section .category .custom-form-control {
    min-width: 150px;
}

@media only screen and (max-width: 1023px) {
    .content-top .right-section .category .custom-form-control {
        min-width: 75px;
    }
}

.content-top .right-section .search {
    margin-left: 10px;
}

.content-top .right-section .category {
    margin-left: 10px;
}

.content-top .right-section .sort {
    margin-left: 10px;
}

.content-main {
    padding: 15px;
    background-color: #fff;
}

/* SCROLLBAR  =====================================================================================  */
.scrollbar::-webkit-scrollbar {
    background-color: #fff;
    width: 16px
}

.scrollbar::-webkit-scrollbar-track {
    background-color: #fff
}

.scrollbar::-webkit-scrollbar-track:hover {
    background-color: #f4f4f4
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 5px solid #fff
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a5;
    border: 4px solid #f4f4f4
}

.scrollbar::-webkit-scrollbar-button {
    display: none
}

/* PRODUCT LISTING  =====================================================================================  */

@media only screen and (min-width: 1200px) {
    .product-listing {
        max-height: calc(100vh - 60px - 125px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.woocommerce {
	max-width:80%!important;
    margin: auto!important;
}
.product-listing{
    padding: 15px;
    width:80%;
}
.product-listing-row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.product-listing-col{
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media only screen and (max-width: 767px) {
    .product-listing-col{
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
.product-listing-col-inner{
    margin-bottom: 30px;
    text-align: center;
}
.product-listing-col-inner figure{
    margin: 0 0 10px 0;
    padding: 0;
}
.product-listing-col-inner figure a{
    display: block;
}
.product-listing-col-inner .image img{
    width: 100%;
    height: 100%;
}
.product-listing-col-inner .image img:hover{
    opacity: .9;
}
.product-listing-col-inner .title{
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(0, 0, 0, 0.5);
}
.product-listing-col-inner .price{
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    margin:10px 0;
    font-weight: 600;
}
.product-listing-col-inner .button{
    display: flex;
    justify-content: center;
}
.product-listing-col-inner .button a{
    color: rgba(0, 0, 0, 0.8);
    background-color: #fff;
    border:1px solid rgba(0, 0, 0, 0.3);
    font-weight: 400;
    text-align: center;
    padding: 7px 30px;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}
/* PRODUCT DETAILS ===================================================================================== */
.product-details{
    padding: 0 15px;
    width:80%;
}
.product-details-row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.product-details-col{
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media only screen and (max-width: 767px) {
    .product-details-col{
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
  .product-details-col-image figure {
    margin:0;
  }
  .product-details-col-image .image img {
    width: 100%;
    height: auto;
  }
.wrapper-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}
.wrapper-list .title{
    font-size: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
}
.wrapper-label{
    min-width: 150px;
    max-width: 150px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}
.wrapper-content{
    display: flex;
    align-items: center;
}
.wrapper-list .w-100{
    width:100%!important;
    min-width: 100%!important;
    max-width: 100%!important;
}
.wrapper-list .w-auto{
    width:auto!important;
    min-width: auto!important;
    max-width: max-content!important;
    margin-bottom: 0;
}
.wrapper-list .description{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 20px;
    margin-bottom: 20px;
}
.wrapper-list .price{
    font-size: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin-left: 5px;
}
.wrapper-list .category-group{
    display: flex;
    flex-wrap: wrap;
}
.wrapper-list .category-group .category-list{
    padding-right: 5px;
}
  .color-item-group{
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.color-item-link{
    display: flex;
    margin: 0 7px 7px 0;
    padding-right: 0;
    width: 35px;
    height: 35px;
    position: relative;
    border: 1px solid #ddd;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.color-item-link.active:before{
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    border: solid rgba(255,255,255,1);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 11px);
    left: calc(50% - 4px);
    z-index: 9;
}
.color-item-link.active:after{
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    border: solid rgba(0,0,0,1);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 4px);
    z-index: 8;
}
.size-item-group{
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.size-item-link{
    padding: 0;
    border: 1px solid #ddd;
    margin: 0 7px 7px 0;
    width: 35px;
    height: 35px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #fff;
    color: #222;
    overflow: hidden;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.size-item-link.active{
    border: 1px solid #28a745;
}

.product-listing .button {
	background-color: #fff;
}

.product-details .button {
	background-color: #fff;
}

.button a{
    color: #fff;
    background-color: #17a2b8;
    border:1px solid #17a2b8;
    font-weight: 400;
    text-align: center;
    padding: 12px 40px;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}
/* VENDOR DETAILS ===================================================================================== */

@media only screen and (min-width: 1200px) {
    .vendor-product {
        max-height: calc(100vh - 60px - 125px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media only screen and (max-width: 1023px) {
    .vendor-product {
        overflow-x: auto;
    }
}

.vendor-product .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}
.vendor-product .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.vendor-product .table th {
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    text-align: left;
}
.vendor-product .table th:last-child {
    text-align: right;
}
.vendor-product .table td{
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    text-align: left;
}
.vendor-product .table td:last-child {
    text-align: right;
}
.btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.btn-group a{
    color: rgba(0, 0, 0, 0.8);
    background-color: #fff;
    border:1px solid rgba(0, 0, 0, 0.3);
    font-weight: 400;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 5px;
}
.pagination {
	float:right;
}
.page-numbers {
	float:left;
	padding:0px 5px;
}
.align-center{
	margin:0px!important;
}
#designer{
	display:none;
}

/* PROFILE ===================================================================================== */
.profile-section{
    display: flex;
  }
  .left-col{
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    width: 100%;
  }
  .right-col{
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
    text-align: right;
  }
  .profile-section .table td{
    padding: 10px;
  }
  .edit-profile{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    padding: 10px 50px;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
  }
  /* DASHBOARD ===================================================================================== */
  .dashboard-section {
    padding: 15px;
}

.dashboard-section .flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.dashboard-section .flex-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.box-header {
    background-color: #1c2b36;
    padding: 8px 15px;
    color: #fff;
    font-size: 16px;
}

.box-body {
    background-color: #fff;
    padding: 15px;
}
.box-body .top {
    margin-bottom: 30px;
}
/* CHATBOX */
.chartBox{
    background: #d8dde6;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 4px;
}
.chartBox .nav{
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.chartBox .nav .nav-item{
    flex: 1;
    padding: 8px 8px 0;
    cursor: pointer;
}
.chartBox  .nav .nav-item .nav-link{
    display: block;
    padding: .5rem 1rem;
}
.chartBox  .nav .nav-item .nav-link.active{
    color: inherit;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
}

.chartBox .chart-item{
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-bottom: 6px;
}
.chartBox .chart-item .time{
    font-size: 13px;
    line-height: 14px;
    color: #9394a4;
    margin: 8px 0 10px;
}
.chartBox .chart-item .price{
    font-size: 22px;
    font-weight: 500;
    color: #505165;
}
.chartBox .chart-item .order{
    font-size: 14px;
    font-weight: 500;
    margin: 3px 0 6px;
}
/* CHAT CONTENT */
.chart-content{
    background: #fff;
    min-height: 190px;
    border-radius: 0 0 4px 4px;
    padding: 15px;
}
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink{
    position: absolute;
    direction: ltr;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}
.chartjs-size-monitor-expand div{
    position: absolute;
    width: 1000000px;
    height: 1000000px;
    left: 0;
    top: 0;
}
.footer-order{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.footer-order .circle-shape{
    width: 12px;
    height: 12px;
    background-color: #51CACC ;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;
}

.box-row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.box-col-4{
flex: 0 0 33.333333%;
max-width: 33.333333%;
position: relative;
width: 100%;
padding-right: 10px;
padding-left: 10px;
}
.box-col-6{
flex: 0 0 50%;
max-width: 50%;
position: relative;
width: 100%;
padding-right: 10px;
padding-left: 10px;
}
.box-col-inner{
background-color: #d8dde6;
padding: 10px;
border-radius: 4px;
}
.box-label{
font-size: 13px;
padding-bottom: 10px;
}
.box-number{
font-size: 20px;
font-weight: 600;
}

/* CUSTOM TABLE ===================================================================================== */
.table.custom-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}
.table.custom-table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table.custom-table th {
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    text-align: left;
}
.table.custom-table th:last-child {
    text-align: right;
}
.table.custom-table td{
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    text-align: left;
}
.table.custom-table td:last-child {
    text-align: right;
}
.table.custom-table .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.table.custom-table .btn-group a{
    color: rgba(0, 0, 0, 0.8);
    background-color: #fff;
    border:1px solid rgba(0, 0, 0, 0.3);
    font-weight: 400;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 5px;
}

/* PAYPAL ===================================================================================== */
.paypal-section{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 100%;
    min-height: 600px;
  }
  .paypal-section .paypal-wrapper{
      width:100%;
      max-width: 450px;
      border: 1px solid #ddd;
      background-color: #fff;
      box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
      display: flex;
      flex-direction: column;
      padding: 40px;
      border-radius: 4px;
  }
  .paypal-section .paypal-wrapper .paypal-logo{
      margin-bottom: 20px;
  }
  .paypal-section .paypal-wrapper .paypal-input{
      margin-bottom: 20px;
      display: block;
      width: 100%;
      padding: 8px;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #495057;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: .25rem;
  }
  .paypal-section .paypal-wrapper .paypal-next{
    color: #fff;
    background-color: #0070ba;
    border-color: #0070ba;  
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    text-decoration: none;

  }
  .paypal-section .paypal-wrapper .paypal-signup{
      width: 100%;
      color: #000;
    background-color: #e1e7eb;
    border-color: #e1e7eb;  
      display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    text-decoration: none;
  }
  .orBox {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}
.orBox:before{
        content: "";
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,.1);
        position: absolute;
        top: 5px;
        z-index: 0; 
}
.orBox span{
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 10px;
        padding: 0 10px;
        position: relative;
        z-index: 1;
        background-color: #fff;
}
/* LOGIN ===================================================================================== */

.login-section{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 100%;
    margin-top: 50px;
  }
  .login-section .login-wrapper{
      width:100%;
      /*max-width: 500px;*/
      border: 1px solid #ddd;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      padding: 50px;
      border-radius: 0px;
  }
  .login-section .login-wrapper .title{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    /*margin-bottom: 20px;*/
  }
  .login-section .login-wrapper .login-group{
    margin-bottom: 20px;
  }
  .login-section .login-wrapper .login-group:last-child{
    margin-bottom: 0px;
  }
  .login-section .login-wrapper .login-label{
    margin:0 0 5px 0;
  }
  .login-section .login-wrapper .login-input{
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0px;
    height:40px;
  }
  .login-section a:hover{
    color: #fff !important;
  }
  .btn-login{
    color: #fff;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: .75rem 1.75rem;
    line-height: 1.6;
    text-decoration: none;
    width: 100%;
    background-color: #83c6c5;
    border: 2px solid transparent;
    font-size: 18px;
  }
  .center {
  	margin: auto;
	width: 50%;
	border: 3px solid green;
	padding: 10px;
  }
  .hidetitle .entry-title { 
    display:none;
}

.hidetitle .entry-header { 
    display:none;
}

.grid {
    max-width: 100%!important;
    min-width: 20%!important;
  }
  .container {
    width:100%;
  }
  .page-header{
    display:none;
  }


.u-column1{
    width: 48%;
    float: left;
    padding: 2px;
    border: 1px solid #ccc;
    margin-right: 2px;
    min-height: 500px;
}
.u-column1 h2{
    text-align:center;
    margin:1em 0!important;
}
.u-column2{
    width: 48%;
    float: left;
    padding: 2px;
    border: 1px solid #ccc;
    margin-right: 2px;
    min-height: 500px;
}
.u-column2 h2{
    text-align:center;
    margin:1em 0!important;
}
#reg_email {
    border:0;
    border-bottom: 1px solid #ccc;
}
.vendor-link {
    color: #fff;
    background-color: #4f4fed;
    border-color: #4f4fed;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    padding: 5px;
    font-size: 2rem;
    line-height: 1.5;
    border-radius: .25rem;
    text-decoration: none;
    margin:0px 10px;
}

.woocommerce-button {
    color: #fff!important;
    background-color: #4f4fed!important;
    border-color: #4f4fed!important;
    display: inline-block!important;
    font-weight: 400!important;
    text-align: center!important;
    vertical-align: middle!important;
    padding: 5px!important;
    font-size: 2rem!important;
    line-height: 1.5!important;
    border-radius: .25rem!important;
    text-decoration: none!important;
    margin:0px 10px!important;
}
.signup-info-section{
    background-color:#F0E4DB;
    padding: 50px;
}
.signup-info-section h5{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    color: #393939;
    margin-bottom: 40px;
}
.signup-info-section ol{
 margin: 0 0 0 18px;
 padding: 0;
}
.signup-info-section ol li{
 color: #303030;
 font-size: 17px;
 font-weight: 400;
 line-height: 21px;
}
.vendor-register .container{
    max-width: none!important;
    padding-left: 50px;
    padding-right: 50px;
}
.vendor-register .container .woocommerce{
    max-width: none!important;  
}
.signup-row{
    margin-top: 50px;
}
.login-group.privacy-policy {
    display: flex;
    align-items: start;
}
.login-group.privacy-policy  label {
    padding: 0px !important;
}