@font-face {
  font-family: 'OpenSans';
  font-weight: normal;
  src: local('Open Sans'), local('OpenSans'), url(/fonts/common/OpenSans-Regular.woff2) format('woff');
}

@font-face {
  font-family: 'OpenSans-Medium';
  font-weight: normal;
  font-style: normal;
  src: local('Open Sans Medium'), local('OpenSans-Medium'), url(/fonts/common/OpenSans-Medium.woff2) format('woff');
}
@font-face {
  font-family: 'OpenSans-Bold';
  font-weight: normal;
  font-style: normal;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(/fonts/common/OpenSans-Bold.woff2) format('woff');
}

html {
  background-color: white;
  background-image: url(/imgs/thedoors/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'OpenSans', sans-serif;
  font-weight: normal;
  font-size: 0.85rem;
  color: #545454;
  margin: 0;
  height: 100%;
  margin: 0;
  padding: 0;
}

input,
select {
  height: 48px;
  width: 100%;
  color: #545454;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5;
  border-radius: 6px;
  box-sizing: border-box;
  background: #FFF;
  padding: 0 22px 0 8px;
  -webkit-appearance: none;
}
select {
  background-image: url(/imgs/common/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: calc(100% - 6px) center;
}
input:focus,
select:focus,
input:focus-visible,
select:focus-visible {
  outline: none;
  border-color: #2D9CDB;
}

.td_back_button,
button {
  cursor: pointer;
  font-size: 1rem;
  font-family: 'OpenSans-Medium';
  color: white;
  background-color: #2D9CDB;
  border-radius: 8px;
  padding: 10px 24px;
  line-height: 28px;
  border: none;
  box-sizing: border-box;
  display: inline-block;
  transition: all .2s;
}
button:hover {
  background-color: #1589CB;
  transition: all .2s;
}
button:active {
  background-color: #0F6494;
  transition: all .2s;
}
.td_back_button {
  background-color: transparent;
  text-transform: uppercase;
  line-height: 24px;
  border-radius: 24px;
  color: #545454;
}
.td_back_button:before {
  content: url(/imgs/common/back.svg);
  display: inline-block;
  vertical-align: top;
  margin-right: 6px;
}
.td_back_button:hover {
  background-color: #F2F2F2;
}
.td_back_button:active {
  background-color: #cdcdcd;
}

a {
  color: #007AFF;
  text-decoration: none;
}
a:hover {
  color: #007AFF;
  text-decoration: underline;
}

b {
  font-family: 'OpenSans-Bold';
}

h1 {
  font-size: 2rem;
  font-family: 'OpenSans-Bold';
  margin: 0 0 8px 0;
  color: #545454;
}
h2 {
  font-family: 'OpenSans-Bold';
  font-size: 30px;
  margin: 0 0 8px;
  color: #545454;
  line-height: 1.2rem;
}
h3 {
  font-size: 1.5rem;
  font-family: 'OpenSans-Bold';
  margin: 0 0 8px 0;
  color: #545454;
}
h4 {
  font-family: 'OpenSans';
  font-size: 0.9rem;
  margin: 0 0 24px 0;
  color: #545454;
  line-height: 1.2rem;
}

hr {
  border-color: #e5e5e5;
  margin: 24px 0;
  border-width: 0 0 1px 0;
}
#td_footer_wb {
  position: absolute;
  width: 100%;
  bottom: 12px;
  font-size: 12px;
  left: 0;
  text-align: center;
}
.td_switch:not(disabled) {
  color: transparent;
  cursor: pointer
}

input[type='checkbox'].td_switch {
  display: inline-block;
  position: relative;
  width: 34px;
  height: 22px;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-style: solid;
  border-color: #e5e5e5;
  border-width: 2px;
  box-shadow: inset 0 0 0 1px #e5e5e5;
  border-radius: 11px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #00b100;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

input[type='checkbox'].td_switch:checked {
  border-color: #00b100;
  box-shadow: inset 0 0 0 1px #00b100;
}

input[type='checkbox'].td_switch:before,
input[type='checkbox'].td_switch:after {
  content: '';
  position: absolute;
  top: 0px;
  width: 24px;
  height: 100%;
  line-height: 20px;
  margin: 0;
  padding: 0;
  background-image: none;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

input[type='checkbox'].td_switch:after,
input[type='checkbox'].td_switch:indeterminate:after {
  width: 18px;
  left: 0;
  left: 0;
  background-color: white;
  border-radius: 50%;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

input[type='checkbox'].td_switch:before,
input[type='checkbox'].td_switch:indeterminate:before {
  left: 12px;
  width: 100%;
  background-color: #E5E5E5;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

input[type='checkbox'].td_switch:checked:after {
  left: calc(100% - 18px);
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

input[type='checkbox'].td_switch:checked:before {
  left: calc(100% - 12px);
}.td_position_relative {
	position: relative;
}
.td_grid {
	display: flex;
  flex-wrap: wrap;
}
.td_width_expand {
	flex: 1;
}
.td_width_1_1 {
	width: 100%;
}
.td_margin_bottom_small {
	margin-bottom: 12px;
}
.td_margin_bottom {
	margin-bottom: 24px;
}
.td_margin_bottom_medium {
	margin-bottom: 32px;
}
.td_margin_bottom_large {
	margin-bottom: 48px !important;
}
.td_margin_bottom_xlarge {
	margin-bottom: 64px;
}
.td_text_center {
	text-align: center;
}
.td_text_right {
	text-align: right;
}
.td_margin_left {
	margin-left: 8px;
}
.td_margin_remove {
	margin: 0;
}
.td_list_number {
	list-style: decimal;
	margin: 24px 0;
	color: #545454;
	font-size: .9rem;
	padding-left: 20px;
	line-height: 1.3rem;
}
.td_label {
	font-family: 'OpenSans-Medium';
	font-size: 14px;
	line-height: 16px;
	color: #949494;
}
[class*="td_warning"] {
	color: #F35A60;
  font-size: .8rem;
  font-style: italic;
}
.td_bold_warning {
	color: #EC1C24;
	font-family: 'OpenSans-Bold';
	font-size: 16px;
	margin-left: 8px;
}
.td_warning_data {
	position: absolute;
	display: none;
	left: 4px;
	bottom: -18px;
	text-align: left;
}
.td_like_a_dialog {
	position: fixed;
  top: 0;
  left: 0;
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: 999999999;
}
.td_like_a_dialog_body {
	width: 360px;
	height: 180px;
  box-sizing: border-box;
	padding: 48px 24px;
	border-radius: 8px;
	background-color: white;
	position: absolute;
	left: calc(50% - 180px);
	top: calc(50% - 120px);
}
.td_dialog_cont {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.td_dialog_warning {
  background-color: white;
  text-align: left;
  font-size: 14px;
  line-height: 22px;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(105, 105, 105, 0.15), 0px 1px 3px 1px rgba(105, 105, 105, 0.15);
  width: 700px;
  max-width: calc(100% - 24px);
}
.td_gray_cont {
	padding: 8px 24px;
	border-radius: 8px;
	border: 1px solid #E5E5E5;
	background: #F9F9F9;
}.td_doodle_ghost {
	display: block;
	height: 160px;
	margin: 24px auto;
	opacity: .25;
}.wbase_pointer {
	cursor: pointer;
}

/*XXX validation style by WB*/
.wb_input_validated {
	background-color: #e5e5e5 !important;
}
.wb_input_unvalidated {
	background-color: #fef4f6 !important;
}
.wb_input_validated_soft {
  border-color: #e5e5e5 !important;
}
.wb_input_unvalidated_soft {
  border-color: #d67070 !important;
  background-color: #fef4f6 !important;
}

.wbase_hover_row {
	cursor: pointer;
}
.wbase_hover_row:hover {
	background-color: #F9F9F9;
}
.js_wbase_descr {
	line-height: 21px;
}
[class*="wbase_text_truncate"] {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.wbase_text_truncate_2_lines {
  -webkit-line-clamp: 2;
}
.wbase_text_truncate_3_lines {
  -webkit-line-clamp: 3;
}
.wbase_text_truncate_4_lines {
  -webkit-line-clamp: 4;
}
.wbase_text_truncate_5_lines {
  -webkit-line-clamp: 5;
}
.wbase_text_truncate_7_lines {
  -webkit-line-clamp: 7;
}

.wbase_loader {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  background: linear-gradient(45deg, #2E5F73 4.18%, #3CD3E2 56.78%);
}
.wbase_loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: white;
}
@keyframes rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg)}
}


/* HTML: <div class="loader"></div> */
.second_loader_mini,
.second_loader {
  width: 68px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side, #46b6c1 94%, #0000) top / 6px 6px no-repeat,
    conic-gradient(#0000 30%, #46b6c1);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6px),#000 0);
  animation: l13 1s infinite linear;
}
.second_loader_mini {
  width: 48px;
}

@keyframes l13{ 
  100%{transform: rotate(1turn)}
}
.wbase_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999999999;
}
.wbase_modal {
  display: block;
  background-color: white;
  width: 360px;
  box-sizing: border-box;
  color: #545454;
  padding: 48px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0px 1px 3px 0px #69696926, 0 0 6px #69696926 !important;
}
.wbase_loader_text {
  padding-top: 32px;
  font-size: 16px;
}

.wbase_loader_mini,
.wbase_loader {
  display: block;
  margin: 0 auto;
  width: 68px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side, #46b6c1 94%,#0000)
    top / 6px 6px no-repeat,
    conic-gradient(#0000 30%, #46b6c1);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6px),#000 0);
  animation: rotate_turn 1s infinite linear;
}
.wbase_loader_mini {
  width: 48px;
}

@keyframes rotate_turn{ 
  100%{transform: rotate(1turn)}
}