@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	background: #ffffff;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'Quicksand', sans-serif;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 16px 0;
	font-weight: 900;
	color: #2b3139;
	line-height: 1.3;
}
.ubuntu{
	font-family: 'Ubuntu', sans-serif;
}
.roboto{
	font-family: 'Roboto', sans-serif;
}
h1{
	font-size: 36px;
}
h2{
	font-size: 32px;
}
h3{
	font-size: 28px;
}
h4{
	font-size: 26px;
}
h5{
	font-size: 24px;
}
h6{
	font-size: 18px;
}
p {
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	color: #8090AA;
	margin: 0 0 25px 0;
}
strong{
	font-weight: 500;
}
p a{
	text-decoration: underline;
	color: #004394;
}
p a:hover{
	text-decoration: none;
}
p:last-child{
	margin-bottom: 0;
}
img{
	display: block;
	max-width: 100%;
}
a{
	outline: none;
	text-decoration: none;
	font-weight: 500;
	color: #004394;
}
ul , ol{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
li{
	list-style: none;
}
ol{
	padding: 0 0 0 20px;
}
ol li{
	list-style: decimal;
}
/* buttons */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  margin: 0; /* 2 */
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
}
button:hover , button:focus , button:active{
	outline: none;
	box-shadow: none;
	text-decoration: none;
}
.btn-blue{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 47px;
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 0 41.2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #1448E2;
	border-radius: 33px;
	transition: 0.3s;
	text-decoration: none;
}
.btn-blue:hover{
	text-decoration: none;
	color: #FFFFFF;
	background: #3769fb;
	transition: 0.3s;
}
.btn-blue:active , .btn-blue:focus{
	background: #1f49c3;
	text-decoration: none;
	color: #FFFFFF;
	transition: 0.3s;
}

.b-link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	color: #8090AA;
	font-family: 'Ubuntu', sans-serif;
	text-decoration: none;
	transition: 0.3s;
}
.b-link:after{
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e909";
	display: block;
	font-size: 15px;
	line-height: 1;
	color: #111ED3;
	margin: 2px 0 0 11px;
	transition: 0.3s;
}
.b-link:hover{
	color: #111ED3;
	text-decoration: none;
	transition: 0.3s;
}
.b-link:hover:after{
	transform: translateX(5px);
	transition: 0.3s;
}

.swiper-button-disabled{
	color: gray !important;
	border-color: gray !important;
	pointer-events: none;	
}
/* ripple-effect */
.ripple {
   position: relative;
   overflow: hidden;
}
.ripple-effect {
   display: inline-block;
   position: absolute;
   top: 0;
   left: 0;
   border: 2px solid rgba(255, 255, 255, .3);
   -webkit-border-radius: 50%;
   border-radius: 50%;
   -webkit-animation: ripple 1s ease forwards;
   animation: ripple 1s ease forwards;
   z-index: 3;
}
@-webkit-keyframes ripple {
   0% {
       -webkit-transform: scale(0);
       transform: scale(0);
   }
   100% {
       -webkit-transform: scale(200);
       transform: scale(200);
   }
}
@keyframes ripple {

    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(200);
        transform: scale(200);
    }
}


/* inputs */
input{
	outline: none;
	border: none;
}
.b-input{
	position: relative;
	margin: 0 0 13px 0;
}
.b-input__text{
	width: 155px;
	height: 34px;
	background: #F5F5F5;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
	padding: 0 10px;
}
.b-input__text::-webkit-input-placeholder{
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
}
.b-input__text:-moz-placeholder{
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
}
.datepicker{
	background: url('../images-vt/chevron-down.svg') right 7px center no-repeat #F5F5F5;
}
textarea{
	width: 100%;
	height: 128px;
	background: #ffffff;
	border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 16px 32px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #2b3139;
	outline: none;
	resize: none;
}
.b-textarea{
	width: 100%;
	min-height: 70px;
	height: auto;
	max-height: 128px;
}
.b-textarea::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #2b3139;
	opacity: 0.75;
}
.b-textarea:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #2b3139;
	opacity: 0.75;
}

/* checkbox , radio */
.b-checkbox{
	margin: 21px 0 0 120px;
}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label span{
	width: 20px;
	height: 20px;
	background: #F5F5F5;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-checkbox input[type="checkbox"] + label span:after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #000000;
	border-radius: 2px;
	opacity: 0;
}
.b-checkbox input[type="checkbox"]:checked + label span:after{
	opacity: 1;
}
.b-checkbox label i{
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
	font-style: normal;
}
/* radio */
.b-radio{
	
}
.b-radio:not(:last-child){
	margin-right: 5px;
}
.b-radio input[type="radio"]{
    display: none;
}
.b-radio input[type="radio"] + label{
	margin: 0;
	background: #F2F2F2;
	border-radius: 3px;
	width: 80px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 11px;
	line-height: 1;
	color: #000000;
	cursor: pointer;
}
.b-radio input[type="radio"]:checked + label{
	background: #29ABD5;
	color: #ffffff;
}
.b-radio input[type="radio"] + label:hover{
	background: #29ABD5;
	color: #ffffff;	
}
.b-radio input[type="radio"] + label i{

}

select{
	outline: none;
}
.b-select{
	width: 155px;
	height: 34px;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
	padding: 0 10px;
	background: #F5F5F5 url('../images-vt/chevron-down.svg');
	background-repeat: no-repeat;
	background-position: right 7px center;
	background-size: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
.fancybox-enabled{
	padding: 0 17px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fancybox-container{
	z-index: 999999;
}
.b-mobile{
	display: none;
}
.modal-dialog{
	pointer-events: inherit;
}
.modal{
	z-index: 99999999;
}
.slick-slide , .slick-slide:hover , .slick-slide:focus{
	outline: none !important;
}
.p-relative{
	position: relative;
}
.text-transform-none{
	text-transform: none !important;
}
.text-transform-uppercase{
	text-transform: uppercase !important;
}
.text-transform-lowercase{
	text-transform: lowercase !important;
}
.text-transform-capitalize{
	text-transform: capitalize !important;
}
.container{
	max-width: 1010px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0;
}
/* End Total css ====*/
.b-container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}
/* -------------- page index -------------- */
.b-header{
	background: #333333;
	height: 60px;
}
.b-header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.b-header .container > div{
	width: 33.333333%;
}
.b-header__center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-header__right{
	display: flex;
	justify-content: flex-end;
}
.btn-logout{
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #FFFFFF;
}
.btn-logout svg{
	margin: 0 5px 0 0;
}
/* -------------- b-footer -------------- */
.b-footer{
	width: 100%;
	height: 60px;
	background: #333333;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* -------------- b-content -------------- */
.b-content{
	padding: 34px 0 60px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-grow: 1;
}
.b-title{
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	text-align: left;
	color: #000000;
	padding: 0 0 13px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 35px 0;
	border-bottom: 1px solid #D9D9D9;
}
.main-page .b-title{
	margin: 0 0 40px 0;
	text-align: center;
}
.b-nav{
	max-width: 330px;
	margin: 0 auto 0;
}
.b-nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.b-nav ul li{
	padding-left: 5px;
	padding-right: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	margin-bottom: 10px;
}
.b-nav ul li.big{
	width: 100%;
}
.b-nav ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	background: #EBEBEB;
	border: 1px solid #DCDCDC;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: #000000;
}
.b-nav ul li a:hover{
	background: #29abd4;
	color: #ffffff;
	border-color: #29abd4;
}
/* -------------- page export -------------- */
.btn-back{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 14px;
	color: #FFFFFF;
}
.btn-back svg{
	margin-right: 5px;
}
.b-block{
	margin: 0 0 60px 0;
}
.b-block__title{
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #000000;
	margin: 0 0 16px 0;
}
.b-block__row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-left: -10px;
	margin-right: -10px;
}
.b-block__row-col{
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
}
.b-table{

}
table{
	border-collapse: collapse;
}
.b-table table{
	width: 100%;
}
.b-table table thead{

}
.b-table table thead th{
	background: #5A824C;
	height: 40px;
	font-weight: 600;
	font-size: 10px;
	line-height: 12px;
	color: #FFFFFF;
	border-right: 1px solid #759B67;
	padding: 5px 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-table table thead th:first-child{
	text-align: left;
	border-radius: 5px 0px 0px 0px;
	padding-left: 10px;
}
.b-table table thead th:last-child{
	border-radius: 0 5px 0 0;
	border: none;
}
.b-table table tbody tr td{
	background: #F3F3F3;
	height: 30px;
	padding: 8px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	color: #000000;
	text-align: center;
	border-bottom: 1px solid #ffffff;
}
.b-table table tbody tr td:first-child{
	text-align: left;
}
.b-table table tbody tr td:last-child{
	border-bottom: none;
}
.td-first{
	width: 200px;
}
.td-small{
	width: 60px;
}
.td-last{
	width: 100px;
}

.b-period{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 17px 0;
}
.b-period__title{
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	color: #000000;
	margin: 0 10px 0 0;
}
.b-inputs{
	margin: 0 0 40px 0;
}
.b-inputs__row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 20px 0;
}
.b-input:not(:last-child){
	margin-right: 10px;
}
.b-inputs__btns{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.btn-send{
	width: 100px;
	height: 40px;
	background: #29ABD4;
	border-radius: 3px;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.btn-reset{
	width: 100px;
	height: 40px;
	background: #EBEBEB;
	border: 1px solid #DCDCDC;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000;
}
.btn-reset:hover{
	background: #29abd4;
	color: #ffffff;
	border-color: #29abd4;
}
.b-input__title{
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
	margin: 0 0 7px 0;
}

.b-table_big table thead th{
	width: 139px;
}
.b-table_big table tr td:last-child{
	padding-left: 8px;
	padding-right: 10px;
}
.table-file{
	background: #A6B934;
	border-radius: 3px;
	font-weight: 600;
	font-size: 10px;
	line-height: 20px;
	color: #FFFFFF;
	text-decoration: none;
	padding: 0px 3px;
	width: 30px;
	height: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
}
.table-file:hover{
	background: #93a42d;
}
.table-file:not(:last-child){
	margin-right: 3px;
}

.b-pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0 0 0;
}
.b-pagination input{
	width: 60px;
	height: 30px;
	background: #F5F5F5;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	padding: 0 5px;
	text-align: center;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
}
.b-pagination a{
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
	border-radius: 3px;
}
.b-pagination a.active{
	background: #29ABD4;
	color: #ffffff;
}
.title-flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-title__btns{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-title__btn{
	width: 200px;
	height: 30px;
	background: #29ABD5;
	border-radius: 3px;
	font-weight: 600;
	font-size: 11px;
	line-height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
}
.b-title__btn:not(:last-child){
	margin-right: 10px;
}
.b-table__title{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #000000;
	margin: 0 0 10px 0;
}
.b-table_md table thead th{
	width: 117px;
}

.b-import{
	margin: 0 0 34px 0;
}
.b-import__top{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.b-import__input{
	max-width: 240px;
	margin-right: 20px;
}
.b-import__input-title{
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
	margin: 0 0 7px 0;
}
.b-file{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-file__title{
	 margin-right: 10px;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: #000000;
}
input[type="file"] {
	display: none;
}
.custom-file-upload {
	width: 80px;
	height: 34px;
	background: #F5F5F5;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	line-height: 13px;
	color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	text-align: center;
}
.b-file__name{
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	color: #666666;
	margin: 0 0 0 10px;
}
.btn-upload{
	width: 100px;
	height: 40px;
	background: #29ABD4;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	color: #FFFFFF;
	margin: 11px 0 0 0;
}
.b-import__bottom{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 11px 0 0 0;
}
.b-import__bottom .btn-upload{
	margin: 0 20px 0 0;
}
.b-import__bottom .b-checkbox{
	margin: 0;
}
.b-import_text{
	font-weight: 600;
	font-size: 12px;
	line-height: 34px;
	color: #000000;
	margin: 0 0 8px 0;
}
.blue-hover:hover{
	background: #25a1c8;
	border-color: #25a1c8;
	color: #ffffff;
}
/* -------------- b-tracking -------------- */
.b-tracking{

}
.b-tracking__rows{
	padding: 0 0 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid  #D9D9D9;
	margin: 0 0 20px 0;
}
.b-tracking__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-tracking__row:not(:last-child){
	margin-bottom: 5px;
}
.b-tracking__row-left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-tracking__row-text{
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #000000;
	width: 265px;
	flex-shrink: 0;
}
.b-tracking__row-number{
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #000000;
	width: 113px;
	flex-shrink: 0;
}
.b-tracking__bar{
	flex-grow: 1;
	height: 20px;
	background: #F5F5F5;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 3px;
}
.b-tracking__bar-line{
	height: 100%;
	background: #A6B934;
	border-radius: 3px;
}
.b-tracking__bottom{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 42px 0;
}
.b-tracking__btn{
	width: 100px;
	height: 40px;
	background: #25A1C8;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	margin-right: 10px;
}
.b-tracking__btn:hover{
	background: #29ABD4;
}
.b-tracking__bottom span{
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
}

.tabs{
	background: #5A824C;
	padding: 0 0 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.tabs__caption{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	background: #ffffff;
	margin: 0 0 20px 0;
}
.tabs__caption li{
	width: 10%;
	height: 40px;
	background: #F3F3F3;
	border-radius: 5px 5px 0px 0px;
	font-weight: 700;
	font-size: 10px;
	line-height: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: #000000;
	cursor: pointer;
}
.tabs__caption li span{
	display: block;
}
.tabs__caption li.active{
	background: #5A824C;
	color: #ffffff;
}
.tabs__caption li:not(:last-child){
	margin-right: 1px;
}
.tabs__content {
	display: none;
}
.tabs__content.active {
	display: block;
}
.tab__row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5px 0 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #88AB7C;
}
.tab__row:not(:last-child){
	margin-bottom: 1px;
}
.tab__row-left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.tab__row-label{
	width: 37px;
	height: 30px;
	font-weight: 700;
	font-size: 11px;
	line-height: 12px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #FFFFFF;
}
.tab__row-number{
	font-weight: 700;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFFF;
}
.tab__row-btn{
	margin-left: 10px;
}
.tab__row-btn:hover svg path{
	stroke: #5A824C;
}
.tab__row-right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.btn-copy{
	width: 180px;
	height: 20px;
	background: #FFFFFF;
	border-radius: 2px;
	font-weight: 700;
	font-size: 9px;
	line-height: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #000000;
	margin-right: 5px;
}
.btn-copy:hover{
	background: #5A824C;
	color: #ffffff;
}
.btn-recheck{
	width: 70px;
	height: 20px;
	background: #FFFFFF;
	border-radius: 2px;
	font-weight: 700;
	font-size: 9px;
	line-height: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #000000;
}
.btn-recheck:hover{
	background: #5A824C;
	color: #ffffff;
}

.b-login{
    width: 330px;
    margin: 0 auto 0;
}
.b-login .b-input{
    margin: 0 0 5px 0;
}
.b-login .b-input__text{
    width: 100%;
    height: 40px;
    background: #F5F5F5;
    border: 1px solid #DCDCDC;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #333333;
}
.b-login .b-input__text::-webkit-input-placeholder{
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #AAAAAA;
}
.b-login .b-input__text:-moz-placeholder{
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #AAAAAA;
}
.b-btn{
    width: 100%;
    height: 40px;
    background: #29ABD4;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    margin: 10px 0 0 0;
}

	/* -------------- modal -------------- */
.modal-overlay{
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgb(000 000 000 / 45%);
	overflow: auto;
	padding: 150px 0 50px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: 0.3s;
}
.modal-overlay {overflow: -moz-scrollbars-none;}
.modal-overlay::-webkit-scrollbar { width: 0; }
.modal-overlay { -ms-overflow-style: none; }
.modal-overlay {
	scrollbar-color: rgba(25,145,235 , 0) rgba(241,241,241 ,0);
	scrollbar-width: 0px;
}
.modal-overlay.active{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
	z-index: 9999;
}
.b-modal{
	width: 100%;
	max-width: 400px;
	pointer-events: auto;
	background: #FFFFFF;
	border-radius: 5px;
	margin: 0 auto 0;
	padding: 15px 20px 20px 20px;
		-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.b-modal__close{
	position: absolute;
	top: 9px;
	right: 9px;
}
.b-modal__top{
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #000000;
	padding: 0 0 6px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #D9D9D9;
	margin: 0 0 16px 0;
}
.b-modal__text{
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #000000;
	margin: 0 0 36px 0;
}
.b-modal__btn{
	width: 80px;
	height: 30px;
	background: #25A1C8;
	border-radius: 3px;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
}