:root{
  /**************fonts*********/
 /*  --ss-family: 'Inter', sans-serif;  */
  --ss-family: 'Roboto', serif;
  /* --ss-family-2: 'Plus Jakarta Sans'; */
  --ss-family-2: 'Roboto', serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-middum: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  /*************font-size************/
  --font-12: 12px;
  --font-14: 14px;
  --font-16: 16px;
  --font-16-36: 16.36px;
  --font-18: 18px;
  --font-20: 20px;
  --font-24: 24px;
  --font-32: 32px;
  --font-36: 36px;
  --font-40: 40px;
  --font-44: 44px;
  --font-48: 48px;
  --font-52: 52px;
  --font-64: 64px;
  --font-82: 82px;
  /*************Color***********/
  --logo-color : #202020;
  --light-color : #F5F7FA;
  --lightgray-color: #727B88;
  --othergray1-color:#D4DBEA;
  --othergray2-color: #98A2B3;
  --othergray3-color: #B6BEC9;
  --othergray4-color: #9CA3AD;
  --orange-color: #F45514;
  --dark-color: #121F3E;
  --blue-color: #0581FD;
  --bluelight-color:#F0F4FD;
  --violet-color: #536DFE;
  --black-color: #000000;
  --matteblack-color: #1A1A1A;
  --white-color: #ffffff;
  --black-shadow: rgba(0, 0, 0, 0.10);
  --card-color: #6F7781;
  --hightlight-color:#F6BE2C;
  --danger-color:#F04438;
  /*****************space************/
  --pad-100: 80px;
  --pad-60: 50px;
  --pad-80: 40px;
  --pad-42: 22px;
}

p img {
    height: auto !important;
}

footer, header, section { 
  width: 100%;
}
body {
    font-family: var(--ss-family);
    font-weight: var(--weight-regular);
    line-height: 1.5;
    font-size: var(--font-16);
    text-transform: none;
    color: var(--lightgray-color);
    text-align: left;
    background-color: var(--white-color);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ss-family);
  color: var(--dark-color);
  line-height: 1.2;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--dark-color);
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{
  color: var(--orange-color);
}
h1 {
	/* font-size: var(--font-52); */
	/* font-size: var(--font-64); */
	/* font-weight: var(--weight-semibold); */
	font-size: var(--font-36);
	font-weight: 500;
}
h2 {
/*	font-size: var(--font-48);
	font-weight: var(--weight-semibold);*/
	margin-bottom: 16px;
	font-size: 32px;
	font-weight: 500;
}
h3 {
 /* font-size: var(--font-40); */
  font-size: 28px;
  /* font-weight: var(--weight-bold); */
  margin-bottom: 15px;
}
h4 {
  font-size: var(--font-24);
  font-weight: var(--weight-semibold);
  margin-bottom: 15px;
}
h5 {
  font-size: var(--font-20);
  font-weight: var(--weight-semibold);
  margin-bottom: 10px;
}
h6 {
  font-size: var(--font-20);
  font-weight: var(--weight-semibold);
  margin-bottom: 12px;
}
a {
  color: var(--dark-color);
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  text-decoration: underline;
}
a:focus, a:hover {
  text-decoration: none;
  color: var(--dark-color);
}
p {
  margin-bottom: 15px;
  text-transform: capitalize;
  font-family: var(--ss-family);
  line-height: 1.5;
}
p b, p strong{
  font-weight: var(--weight-semibold);
}
ul {
  padding-left: 30px;
}
/**********************Button****************/
.button-group {
  display: flex;
  flex-wrap: wrap;
}
.disable, .btn.disable, .btn.disable>a, .btn>a.disable{
  pointer-events: none !important;
  opacity: 0.8 !important;
}
.btn {
  font-size: var(--font-16);
  line-height: 1.4;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  min-width: 164px;
  border: 1px solid;
  border-radius: 8px;
  height: 48px;
  background-color: transparent;
  color: var(--lightgray-color);
  border-color: var(--lightgray-color);
  text-decoration: none;
  text-transform: uppercase;
}
.btn:hover {
  background-color: var(--lightgray-color);
  color: var(--white-color);
  border-color: var(--lightgray-color);
}
.btn-link-1, .btn-link-1-arrow{
  background-color: var(--orange-color);
  color: var(--white-color);
  border-color: var(--orange-color);
}
div.btn-link-1>a, div.btn-link-1-arrow>a{
  color: var(--white-color);
}
.btn-link-2, .btn-link-2-arrow {
	background-color: var(--orange-color);
	color: var(--white-color);
	border-color: var(--orange-color);
}
div.btn-link-2>a, div.btn-link-2-arrow>a{
  color: var(--white-color);
}
.btn-link-3, .btn-link-3-arrow {
  background-color: transparent;
  color: var(--orange-color);
  border-color: var(--orange-color);
}
div.btn-link-3>a, div.btn-link-3-arrow>a{
  color: var(--orange-color);
}
.btn-link-4, .btn-link-4-arrow{
  background-color: transparent;
  color: var(--orange-color);
  border-color: var(--orange-color);
}
div.btn-link-4>a, div.btn-link-4-arrow>a{
  color: var(--dark-color);
}
.btn-link-1-arrow::after, .btn-link-2-arrow::after, .btn-link-3-arrow::after, .btn-link-4-arrow::after, 
div.btn-link-1-arrow>a::after, div.btn-link-2-arrow>a::after, div.btn-link-3-arrow>a::after, div.btn-link-4-arrow>a::after{
  content: "";
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-link-1-arrow::after, div.btn-link-1-arrow>a::after{
  background-image: url(../img/icon/left-arrow-white.svg);
}
.btn-link-2-arrow::after, div.btn-link-2-arrow>a::after{
  background-image: url(../img/icon/left-arrow-white.svg);
}
.btn-link-3-arrow::after, div.btn-link-3-arrow>a::after{
  background-image: url(../img/icon/left-arrow-orange.svg);
}
.btn-link-4-arrow::after, div.btn-link-4-arrow>a::after{
  background-image: url(../img/icon/left-arrow-dark.svg);
}
.btn-link-1:hover, .btn-link-1-arrow:hover, .btn-link-1:focus, .btn-link-1-arrow:focus{
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
}
.btn-link-2:hover, .btn-link-2-arrow:hover, .btn-link-2:focus, .btn-link-2-arrow:focus {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-color: var(--dark-color);
}
div.btn-link-2:hover>a, div.btn-link-2-arrow:hover>a, div.btn-link-2:focus>a, div.btn-link-2-arrow:focus>a,
div.btn-link-1:hover>a, div.btn-link-1-arrow:hover>a, div.btn-link-1:focus>a, div.btn-link-1-arrow:focus>a{
  color: var(--white-color);
}
.btn-link-3:hover, .btn-link-3-arrow:hover, .btn-link-3:focus, .btn-link-3-arrow:focus {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-color: var(--dark-color);
}
div.btn-link-3:hover>a, div.btn-link-3-arrow:hover>a, div.btn-link-3:focus>a, div.btn-link-3-arrow:focus>a{
  color: var(--white-color);
}
.btn-link-4:hover, .btn-link-4-arrow:hover, .btn-link-4:focus, .btn-link-4-arrow:focus{
  background-color: var(--orange-color);
  color: var(--white-color);
  border-color: var(--orange-color);
}
div.btn-link-4:hover>a, div.btn-link-4-arrow:hover>a, div.btn-link-4:focus>a, div.btn-link-4-arrow:focus>a{
  color: var(--white-color);
}
.btn-link-3-arrow.btn-share:after, div.btn-link-3-arrow.btn-share>a:after {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon/share-violet.svg);
}
.btn-link-2-arrow.btn-share:after, .btn-link-3-arrow.btn-share:hover:after, div.btn-link-3-arrow.btn-share:hover>a:after {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon/share-white.svg);
}
.btn.focus, .btn:focus, button:focus, [type="submit"] {
  box-shadow: none;
  outline: none;
}
.btn-add:after{
  background-image: url(../img/icon/plus-white.svg);
}
.btn-link-3-arrow:hover::after,.btn-link-4-arrow:hover::after, div.btn-link-3-arrow:hover>a::after, div.btn-link-4-arrow:hover>a::after{
  background-image: url(../img/icon/left-arrow-white.svg);
}
.btn a {
  text-decoration: none;
}
div.btn {
  padding: 0;
}
div.btn>a{
  padding: 11px 24px;
}
div.btn>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.btn-link-3-arrow a {
  color: var(--orange-color);
}
div.btn-link-3-arrow:hover a {
  color: var(--white-color);
}
div.btn-link-1-arrow:after, div.btn-link-2-arrow:after, div.btn-link-3-arrow:after, div.btn-link-4-arrow:after{
  display: none;
}
.btn.disabled, button.disabled {
  cursor: default;
  pointer-events: none;
}
/*******************************************/
img{
	max-width:100%;
	height:auto;
}
hr {
  width: 100%;
}
/********************************/
.pad-y-42{
  padding-top: var(--pad-42);
  padding-bottom: var(--pad-42);
}
.pad-t-42{
  padding-top: var(--pad-42);
}
.pad-b-42{
  padding-bottom: var(--pad-42);
}

.pad-y-100 {
	/*padding-top: var(--pad-100);
	padding-bottom: var(--pad-100);*/
	padding-top: 30px;
	padding-bottom: 30px;
}
.pad-y-60{
  padding-top: var(--pad-60);
  padding-bottom: var(--pad-60);
}
.pad-t-60{
  padding-top: var(--pad-60);
}
.pad-b-60{
  padding-bottom: var(--pad-60);
}
.pad-t-80{
  padding-top: var(--pad-80);
}
.pad-y-80{
  padding-top: var(--pad-80);
  padding-bottom: var(--pad-80);
}
.pad-b-80{
  padding-bottom: var(--pad-80);
}
.pad-t-100{
  padding-top: var(--pad-100);
}
.pad-b-100{
  padding-bottom: var(--pad-30);
}
/**************************Background-color***********************/
.bg-light{
  background-color: var(--light-color) !important;
}
.bg-white{
  background-color: var(--white-color);
}
/******************Form************************/
.form-item {
  margin: 10px 0;
  display: inline-flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.form-item.js-form-type-checkbox {
  margin: 6px 0px;
  margin-bottom: 12px;
}
.form-item.js-form-type-radio{
  margin: 14px 0px;
}
.form-item.js-form-type-radio+.form-item.js-form-type-radio{
  margin-top: 0px;
}
.form-item label, .form-item.fieldgroup legend, fieldset.form-item legend{
    font-size: var(--font-16);
    font-weight: var(--weight-semibold);
    font-family: var(--ss-family);
    color: var(--dark-color);
    margin-bottom: 0;
    width: 100%;
    position: relative;
}
.form-item input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), select, textarea{
  height: 44px;
  font-size: var(--font-16);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--othergray1-color);
  background-color: var(--bluelight-color);
  width: 100%;
  color: var(--dark-color);
  font-weight: var(--weight-regular);
  font-family: var(--ss-family-2);
  margin-top: 6px;
} 
.form-item-privacy-policy input[type="checkbox"] { opacity: 1 !important; border-radius: 8px;
  border: 1px solid var(--othergray1-color);
  background-color: var(--bluelight-color);
  width: 100%;
  color: var(--dark-color);
  font-weight: var(--weight-regular);
  font-family: var(--ss-family-2); }
.form-item.form-no-label input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), .form-item.form-no-label select, .form-item.form-no-label textarea{
  margin-top: 0px;
}
textarea{
  height: auto;
  resize: none;
}
.js-form-type-textarea div {
  width: 100%;
}
.form-item input:not([type="checkbox"]):not([type="radio"])::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color:var(--othergray2-color);
}
.form-item input:not([type="checkbox"]):not([type="radio"])::-moz-placeholder { /* Firefox 19+ */
  color:var(--othergray2-color);
}
.form-item input:not([type="checkbox"]):not([type="radio"]):-ms-input-placeholder { /* IE 10+ */
  color:var(--othergray2-color);
}
.form-item input:not([type="checkbox"]):not([type="radio"]):-moz-placeholder { /* Firefox 18- */
  color:var(--othergray2-color);
}
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color:var(--othergray2-color);
}
textarea::-moz-placeholder { /* Firefox 19+ */
  color:var(--othergray2-color);
}
textarea:-ms-input-placeholder { /* IE 10+ */
  color:var(--othergray2-color);
}
textarea:-moz-placeholder { /* Firefox 18- */
  color:var(--othergray2-color);
}
.form-item input:not([type="checkbox"]):not([type="radio"]):focus, select:focus, textarea:focus{
  outline: none;
}
.form-item .description {
  display: block;
  width: 100%;
  font-size: var(--font-14);
  color: var(--lightgray-color);
  margin-top: 6px;
  font-family: var(--ss-family-2);
}
.error{
  color: var(--danger-color);
}
.form-actions {
  margin: 13px 0px;
  position: relative;
}
.form-actions span.submitbutton, .form-actions input[type="submit"], .send-message.form-submit{
  width: 100%;
  font-size: var(--font-20);
  line-height: 1.4;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-semibold);
  min-width: 164px;
  border: 1px solid;
  border-radius: 8px;
  height: 48px;
  background-color: var(--orange-color);
  color: var(--white-color);
  border-color: var(--orange-color);
}
.form-actions span.submitbutton:hover, .form-actions input[type="submit"]:hover, .form-actions input[type="submit"]:hover~span.submitbutton{
  background-color: var(--dark-color);
  color: var(--white-color);
  border-color: var(--dark-color);
}
.form-actions span.submitbutton{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width:100%;
  height:100%;
  pointer-events: none;
}
.form-actions span.submitbutton:after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/submit-arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 6px;
}
.forgotPass, .back-btn{
  width: 100%;
  font-size: var(--font-20);
  line-height: 1.4;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-semibold);
  min-width: 164px;
  border: 1px solid;
  border-radius: 8px;
  height: 48px;
  background-color: var(--white-color);
  color: var(--dark-color);
  border-color: var(--white-color);
  text-decoration: none;
  margin-top: 12px;
}
.form-actions+.forgotPass {
  margin-top: 0;
}
.forgotPass:hover, .back-btn:hover{
  color: var(--orange-color);
}
.js-form-type-select label:before{
  content: "";
  background-image: url(../img/icon/down-arrow-orange.svg);
  width: 20px;
  height: 20px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 14px;
  top: 40px;
  bottom: auto;
  margin: auto;
  pointer-events: none;
}
.js-form-type-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
}
.js-form-type-select select option:checked {
    background-color: transparent;
    color: var(--dark-color);
}
select option:disabled {
    background-color: transparent;
    color: var(--othergray2-color);
}
.form-item .btn-edit {
  border-radius: 4px;
  font-size: var(--font-14);
  padding:4px 8px;
  min-width: 42px;
  height: 24px;
  color: var(--orange-color);
  border-color: var(--orange-color);
  position: absolute;
  right: 12px;
  top: 37px;
}
.form-item .btn-edit:hover{
  color: var(--white-color);
  border-color: var(--orange-color);
  background-color: var(--orange-color);
}
.form-item.form-edit-type input[type="text"] {
  padding-right: 66px;
}
.form-item.js-form-type-radio-parent {
    margin-top: 18px;
    margin-bottom: 10px;
}
.js-form-type-radio, .js-form-type-checkbox, .form-type-checkbox, .form-type-radio{
    margin: 14px 0px;
    display: flex;
    flex-wrap: nowrap;
}
.js-form-type-radio>div, .js-form-type-checkbox>div, .form-type-checkbox>div, .form-type-radio>div{
  display: flex;
  flex-wrap: nowrap;
}
.js-form-type-radio input[type="radio"], .js-form-type-checkbox input[type="checkbox"], .form-type-checkbox input[type="checkbox"], .form-type-radio input[type="radio"]{
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    opacity: 0;
    margin-right: 12px;
    cursor: pointer;
}
.js-form-type-checkbox input[type="checkbox"]+label, .form-type-checkbox input[type="checkbox"]+label{
  font-family: var(--ss-family-2);
  font-weight: var(--weight-regular);
}
.js-form-type-radio label, .js-form-type-checkbox label, .form-type-checkbox label, .form-type-radio label{
    font-weight: var(--weight-regular);
}
.js-form-type-radio label span, .form-type-radio label span{
  display: block;
  font-size: var(--font-16);
  color: var(--dark-color);
  font-weight: var(--weight-semibold);
  margin-bottom: 6px;
}
.js-form-type-radio input[type="radio"]+label:before, .js-form-type-checkbox input[type="checkbox"]+label:before, 
.form-type-checkbox input[type="checkbox"]+label:before, .form-type-radio input[type="radio"]+label:before{
    content: "";
    position: absolute;
    top: 0;
    left: -32px;
    right: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--othergray4-color);
    border-radius: 24px;
    pointer-events: none;
}
.js-form-type-checkbox input[type="checkbox"]+label:before, .form-type-checkbox input[type="checkbox"]+label:before{
  border-radius: 4px;
}
.js-form-type-checkbox input[type="checkbox"]:checked~label:before, .form-type-checkbox input[type="checkbox"]:checked~label:before{
  background-color: var(--orange-color);
}
.js-form-type-radio input[type="radio"]+label:after, .js-form-type-checkbox input[type="checkbox"]+label:after,
.form-type-radio input[type="radio"]+label:after, .form-type-checkbox input[type="checkbox"]+label:after{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--othergray4-color);
    display: block;
    border-radius: 16px;
    position: absolute;
    left: -27px;
    top: 5px;
    pointer-events: none;
    opacity: 0;
}
.js-form-type-radio input[type="radio"]:checked~label:before, .js-form-type-checkbox input[type="checkbox"]:checked~label:before,
.form-type-radio input[type="radio"]:checked~label:before, .form-type-checkbox input[type="checkbox"]:checked~label:before{
  border: 1px solid var(--orange-color);
}
.js-form-type-radio input[type="radio"]:checked~label:after, .form-type-radio input[type="radio"]:checked~label:after{
  background-color: var(--orange-color);
  opacity: 1;
}
.js-form-type-checkbox input[type="checkbox"]:checked~label:after, .form-type-checkbox input[type="checkbox"]:checked~label:after{
    background-image: url(../img/icon/check-white.svg);
    background-color: transparent;
    border-radius: 0;
    opacity: 1;
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    top: 0;
    left: -32px;
  }
.form-item.form-item-file+.form-item.form-item-file {
  margin-top: 24px;
}
.upload-file {
  border-radius: 4px;
  font-size: 14px;
  padding: 4px 8px;
  min-width: 42px;
  height: 24px;
  color: var(--orange-color);
  border: 1px solid var(--orange-color);
  position: absolute;
  right: 12px;
  top: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
input[type="file"] {
  cursor: pointer;
}
.upload-file:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url(../img/icon/upload-violet.svg);
  background-size: cover;
}
.brack-to {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: var(--black-color);
  font-weight: var(--weight-semibold);
  margin-top: -6px;
}
.form-item.js-form-type-select.form-no-label:before {
  content: "";
  background-image: url(../img/icon/down-arrow-orange.svg);
  width: 20px;
  height: 20px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 22px;
  top: 12px;
  bottom: auto;
  margin: auto;
  pointer-events: none;
}
div[aria-label="Error message"] {
  color: #fd1717;
}
/*****************B3*************/
.btn-group-vertical > .btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.modal-header:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after,
footer:after,
header:after,
section:after{
    clear: both;
}
.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before, 
footer:before, footer:after, 
header:before, header:after, 
section:before, section:after{
    display: block;
    content: " ";
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    float: left;
}
.justify-content-lg-between:before, .justify-content-lg-between:after {
  display: none;
}
/*************************************end B3*************************************/

/*************************************Card*********************************/
.card {
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0px 3px 6px 0px var(--black-shadow);
  padding: 24px;
  border: 0;
}
.card.no-card {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0px;
}
.card-header {
  border-bottom: 1px solid var(--othergray3-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  flex-wrap: wrap;
}
.card.no-card .card-header {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--othergray3-color);
}
.card-header .card-header-left {
  padding-right: 30px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: calc(100% - 360px);
}
.card-header .card-header-right {
  padding-left: 0;
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: flex-end;
}
.card-header .card-header-left h5 {
  margin-bottom: 0;
}
.card-header .logo-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  box-shadow: 0px 3px 6px 0px var(--black-shadow);
  margin-right: 24px;
  font-size: 12.83px;
  color: var(--logo-color);
  border-radius: 4px;
  font-family: var(--ss-family-2);
  font-weight: var(--weight-semibold);
}
.card-header .ch-content h5 {
  margin-bottom: 8px;
}
.card-header .ch-content span {
  color: var(--dark-color);
  display: block;
}
.card-header-right .button-group {
  margin: 8px 0px;
  justify-content: flex-end;
}
.card-header-right .btn, .card-header-right div.btn>a {
  padding: 12px;
  height: 44px;
}
.card-header-right div.btn{
  padding: 0;
}
.card-header-right .button-group .btn {
  margin-left: 12px;
}
.card-header-right .button-group .btn:first-child {
  margin-left: 0;
}
.card-body {
  padding: 24px;
}
.card-header-right .button-group .btn {
  margin-left: 12px;
}
.card.shadow-none {
  margin: 0px 0px 16px 0px;
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
}
.card.shadow-none .card-header {
  padding-left: 0;
  padding-right: 0;
}
.card.shadow-none .card-body {
  padding: 16px 0px 0px;
  width: 100%;
}
.span-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.label {
  font-weight: var(--weight-semibold);
  margin-right: 5px;
}
.tag {
  display: flex;
  padding: 6px;
  border-radius: 4px;
  background-color: var(--light-color);
  color: var(--dark-color);
  cursor: default;
}
.tag+.tag{
  margin-left: 12px;
}
.btn-filter {
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
  font-size: var(--font-16);
  font-weight: var(--weight-middum);
  border-radius: 6px;
  padding: 6px 12px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-filter:hover{
  background-color: var(--dark-color);
  color: var(--white-color);
  border-color: var(--dark-color);
}
.btn-filter:before{
  content: "";
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/icon/Filter.svg);
}
.btn-filter:hover:before{
  background-image: url(../img/icon/Filter-white.svg);
}
.share-btn {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background-color: transparent;
  color: var(--orange-color);
  border: 1px solid var(--orange-color);
  border-radius: 8px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}
.share-btn a.a2a_dd {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-btn:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/share-violet.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.share-btn:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-color: var(--dark-color);
}
.share-btn:hover:before{
  background-image: url(../img/icon/share-white.svg);
}
.share-btn+.btn {
  flex: 0 0 calc(100% - 54px);
  width: calc(100% - 54px);
  height: 44px;
  min-width: unset;
}
/***********/
.highlight {
  color: var(--orange-color);
  margin-bottom: 2px;
}
