:root {
    --space: 30px;
    --padd : 30px;
    --trans-time : 0.25s;
    --silver-color: #DFE2E7;
    --border-control-color: #99A1AF;
    --border-box-color: #C3C8D0;
    --text-color: #555555;
    --primary-color: #B50300;
    --primary-hover-color: #830300;
    --secondary-color: #6C757D;
    --secondary-hover-color: #545B61;
    --success-color: #28a745;
    --success-hover-color: #218838;
    --danger-color: #dc3545;
    --danger-hover-color: #c82333;
    --warning-color: #ffc107;
    --warning-hover-color: #e0a800;
    --info-color: #17a2b8;
    --info-hover-color: #138496;
    --alert-color: #FFB8B8;
    --loading-bg: #FFFFFF;
	--misty-rose : #FFDFE5;
    --cofesa-red: #C20E1A;
    --bg-row: #F0F0F0;
    --link-color: #0000EE;
    --radio-color: #00ABED;
	--container-width: 56.25vh;
}

* {
    color: var(--text-color);
    font-family: Arial;
    font-size: 14pt;
}

html {
    display: flex;
	width: 100%;
	min-height: 100%;
}

body {
    -webkit-touch-callout: none;                
    -webkit-text-size-adjust: none;             
    -webkit-user-select: none;                  
    background-color: #FFF;
    min-height: 100%;
    margin:0px;
    padding:0px;
    width:100%;
	display: flex;
	justify-content: center;
    /*background-image: url('../img/bg.webp');
    background-size: cover;*/
}

h1 {
    font-size: 12pt;
    margin: 0 0 10px 0 ! important;
}

h1:not(.no-icon) {
	padding-left: 40px;
    margin: 5px;
    background-size: 28px 28px;
    height: 32px;
    line-height: 32px;
    background-repeat: no-repeat;
    background-position: 0px center;
}

h1, h2, h3, h4 {
    margin: 0;
	line-height: 1;
}

h3 {
    font-size: 14pt;
}

.top-left {
	display: flex;
	align-items: center;
}

.arrow-left, .space-left {
	margin-left: 20px;
	margin-right: 20px;
}

.arrow-left {
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11.25px 19.5px 11.25px 0;
	border-color: transparent white transparent transparent;
	cursor: pointer;
	margin-left: 20px;
	margin-right: 20px;
	opacity: 0.7;
	transition: opacity 0.5s;
}

.arrow-left:hover {
	opacity: 1;
}

.space-left {
	width: 19px;
	display: inline-block;
}

.cofesa-logo {
    margin-bottom: 30px;
    background-image: url('../img/logo_nuevo.webp');
    background-size: 200px auto;
    background-repeat: no-repeat;
    background-position: center center;
    height: 114px;
}

.app, .app-mob {
    padding: 30px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	background-color: white;
}

.app, .app-container {
	width: var(--container-width);
    height: 100vh;
}

.app-mob {
	width: 100%;
}

.app-mobile {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
	background-color: #FFFFFF;
    overflow: hidden;
}

.app-container {
	background-color: #FFFFFF;
	overflow: hidden;
	display: flex;
    flex-direction: column;
}

.top-bar {
    flex: 0 0 64px;
    background-image: url('/assets/img/bg_red.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
	justify-content: space-between;
}

.top-left a {
	display: block;
}

.app-user {
	position: relative;
	margin-right: 20px;
	width: 40px;
	height: 40px;
}

.user-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #FFF;
	cursor: pointer;
	overflow: hidden;
}

.main-menu {
    width: 40px;
	height: 40px;
	cursor: pointer;
	overflow: hidden;
    background-image: url('../img/menu_lines.svg');
    background-position: center center;
    background-repeat: no-repeat;
}

.user-circle > span {
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	font-size: 18pt;
	font-weight: bold;
}

.user-menu:not(.show) {
	transform: translateX(60px);
}

.user-menu {
	position: absolute;
	left: 0;
	top: 42px;
	width: 200px;
	transform: translateX(-155px);
	background-color: #333333;
	padding: 10px 0;
	border-radius: 5px;
    z-index: 9;
    transition: transform 0.25s;
}

.user-menu ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.user-menu ul li {
	display: block;
}

.user-menu ul li:not(:last-child) {
	margin-bottom: 5px;
}

.user-menu ul li span {
	display: block;
	white-space: nowrap;
	font-size: 12pt ! important;
	background-color: #333333;
	color: #FFFFFF;
	line-height: 1;
	padding: 10px 20px;
	cursor: pointer;
	transition: background-color 0.5s, color 0.5s;
}

.user-menu ul li span:hover {
	background-color: #000000;
}

.user-menu ul li span[data-action="go-to-sorteo"] {
	background-image: url('../img/sorteo.png');
	background-size: 28px 28px;
	background-repeat: no-repeat;
	background-position: 17px center;
	padding-left: 55px;
	  
}

#btn-left {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-left: 20px;
    cursor: pointer;
}

#btn-left img {
    display: block;
    width: 100%;
    height: 100%;
}

.app-page {
	flex: 1;
    padding: 5px;
}

.app-page.strong {
	padding: var(--padd)
}

.logo {
	display: block;
    height: 32px;
}

.body-container {
    padding: 20px;
}

input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}

input:not([type="radio"]):not([type="checkbox"]), textarea, button {
    border: 1px solid var(--border-control-color);
    /*height: 54px;*/
    padding: 7px 10px;
    line-height: 24px;
    box-sizing: border-box;
    background-color: white;
}

input:not([type="radio"]):not([type="checkbox"]), select, textarea {
    border-radius: 5px;
    padding: 7px 10px;
}

input[type="checkbox"] {
	margin: 0;
    width: 18px;
    height: 18px;
}

input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    accent-color: revert;
}

input.date {
    width: 32px ! important;
    height: 32px ! important;
    overflow: hidden;
    padding: 0 0 0 32px ! important;
    display: block;
    position: relative;
    border-radius: 5px;
    background-image: url('/assets/img/calendar.svg');
	background-repeat: no-repeat;
    background-position: center center;
    background-size: 28px 28px;
    cursor: pointer;
}

input[type="number"] {
    appearance: textfield;
}

input[type="email"] {
    text-transform: lowercase;
}

input[type="email"]::placeholder {
    text-transform: none;
}

input[readonly], input[disabled], select[disabled] {
    background-color: #DFE2E6 ! important;
	color: #000 ! important;
	opacity: 1 ! important;
}

select {
	border: 1px solid var(--border-control-color);
    padding: 10px ! important;
    line-height: 22px;
    box-sizing: border-box;
    background-color: white;
}

.spn-date {
    display: flex;
    align-items: center;
}

.spn-date > span {
    width: 65px;
    margin-right: 5px;
}

.block {
    width: 100%;
}

input[type="text"][disabled], select[disabled], textarea[disabled] {
	opacity: 0.5;
}

button, .button {
    padding: 15px 20px;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.button {
	border-width: 1px;
	border-style: solid;
}

button:not([disabled]), .button:not(.disabled) {
    cursor: pointer;
}

button[disabled], .button.disabled {
    opacity: 0.6;
}

button:not([disabled]):hover, .button:not([disabled]):hover {
    background-color: #D8D8D8;
}

button.square {
	width: 40px;
	height: 40px;
	border-radius: 5px;
	background-color: transparent;
	background-repeat: no-repeat;
	border-color: transparent;
	background-position: center;
	background-size: 32px;
	transition: border-color 0.25s;
}

button.square:hover {
	background-color: transparent;
	border-color: var(--border-control-color);
}

button.primary, .button.primary {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

button.primary, .button.primary, button.primary span, .button.primary span, button.secondary span, .button.secondary span {
    color: white;
}

button.primary:not([disabled]):hover, button.primary:not([disabled]):active, .button.primary:not([disabled]):hover, .button.primary:not([disabled]):active {
    border-color: var(--primary-hover-color);
    background-color: var(--primary-hover-color);
}

button.secondary, .button.secondary {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

button.secondary:not([disabled]):hover, button.secondary:not([disabled]):active, .button.secondary:not([disabled]):hover, .button.secondary:not([disabled]):active {
    border-color: var(--secondary-hover-color);
    background-color: var(--secondary-hover-color);
}

button.light, .button.light {
    border-color: var(--border-box-color);
    background-color: white;
}

button.light:hover, .button.light:hover {
    background-color: #E5E5E5;
    border-color: #CBCBCB;
}

.field-switch {
    width: auto ! important;
	display: flex;
	align-items: center;
}

.field-switch > span {
    margin-right: 10px;
    line-height: 20px;
	text-align: right;
	white-space: nowrap;
}

.toggle-switch {
  position: relative;
  width: 40px ! important;
  height: 20px;
  margin-bottom: 0;
  clear: none ! important;
}

.toggle-switch label {
  position: absolute;
  width: 40px;
  height: 20px;
  border-radius: 50px;
}

.toggle-switch input {
  position: absolute;
  display: none;
}

.toggle-switch .slider {
  position: absolute;
  width: calc(100% - 4px) ! important;
  height: 100%;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 0 ! important;
  background-color: #BCBCBC;
}

.toggle-switch input:checked ~ .slider {
  background-color: #BBDEDB;
}

.toggle-switch input:not([disabled]) ~ .slider {
    cursor: pointer;
}

.toggle-switch input[disabled]:checked ~ .slider {
  background-color: #C4D5D5 ! important;
}

.toggle-switch .slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #EBEBEB;
  transition: 0.3s;
}

.toggle-switch input:checked ~ .slider::before {
  transform: translateX(20px);
  background-color: #028074;
  box-shadow: none;
}

.toggle-switch input[disabled]:checked ~ .slider::before {
    background-color: #7EA8A4 ! important;
}

.table-wrapper {
    overflow-y: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

thead th, tbody td {
    padding: 10px;
}

thead th {
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    font-size: 10pt;
    z-index: 1;
    position: sticky;
    top: 0;
}

.header-left thead th:not(.th-edit) {
    text-align: left;
    padding-right: 0 ! important;
}

thead th.th-edit {
    width: 16px;
}

.body-left tbody td:not(.td-btn) {
    padding-right: 0 ! important;
}

tbody td {
    font-size: 10pt;
}

tbody td:not(.td-btn) {
    padding: 10px;
}

tbody td.td-btn {
    padding: 2px;
    width: 32px;
    position: relative;
    background-clip: padding-box;
}

tbody td.td-btn > span {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    padding: 4px;
    background-image: url('/assets/img/dots_menu.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
    transition: background-color 0.5s;
}

tbody td.td-btn > span:not(.disabled) {
	cursor: pointer;
}

tbody td.td-btn > span:not(.disabled):hover {
    background-color: #C1C8D1;
}

tbody tr:nth-child(2n) td {
    background-color: white;
}

tbody tr:nth-child(2n) td {
    background-color: var(--bg-row);
}

tbody td.td-btn > ul {
    position: absolute;
    transform: translate(calc(-100% - 5px), 5px);
    padding: 10px 0;
    margin: 0;
    border-radius: 5px;
    list-style: none;
    background-color: white;
    z-index: 2;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

tbody td.td-btn > ul > li {
    display: block;
}

tbody td.td-btn > ul > li > span {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.5s;
}

tbody td.td-btn > ul:not(.show) {
    display: none;
}

tbody td.td-btn > ul.show {
    display: block;
}

tbody td.td-btn > ul > li > span:hover {
    background-color: var(--silver-color);
}

tfoot td {
    padding: 10px;
    font-size: 10pt;
    font-weight: bold;
}

.table-header {
    flex: 0 0 37px;
}

.table-body {
    position: relative;
}

.table-body > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
   
.deev-box {
    border: 1px solid var(--border-box-color);
    border-radius: 5px;
}

.deev-box-head {
    padding: 20px;
    border-bottom: 1px solid var(--border-box-color);
}

.deev-box-body {
    padding: var(--padd);
}

.deev-flex {
    display: flex;
}

.deev-flex-center {
    justify-content: center;
    align-items: center;
}

.deev-flex-x-center {
    justify-content: center;
}

.deev-flex-x-right {
    justify-content: flex-end ! important;
}

.deev-flex-y-center {
    align-items: center;
}

.deev-text-center {
    text-align: center;
}

.deev-text-right {
    text-align: right;
}

td.deev-text-right {
    white-space: nowrap;
}

.deev-mt {
    margin-top: var(--space);
}

.deev-mb {
    margin-bottom: var(--space);
}

.deev-middle {
    align-items: center;
}

.deev-shadow, .deev-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity var(--trans-time);
}

.deev-shadow:not(.show), .deev-cover:not(.show) {
    opacity: 0;
}

.deev-shadow:not(.display), .deev-cover:not(.display) {
    display: none;
}

.deev-shadow {
    z-index: 98;
    background-color: rgba(255, 255, 255, 0.5);
}

.deev-cover {
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.show {
    opacity: 1 ! important;
}

.deev-prompt {
    min-width: 270px;
}

.deev-alert, .deev-prompt {
    background-color: white;
    padding: var(--padd);
    border-radius: 5px;
	border: 1px solid var(--border-box-color);
}

.deev-alert .deev-alert-message {
    margin: 10px 0 30px 0;
    display: flex;
    justify-content: center;
	align-items: center;
}

.deev-prompt .deev-prompt-message {
    margin-bottom: 30px;
}

.deev-prompt .deev-prompt-message span {
    display: block;
    margin-bottom: 10px;
}

.deev-prompt .deev-prompt-message input {
    width: 100%;
}

.deev-prompt input {
    text-align: center;
}

.deev-alert .deev-alert-message img {
    margin-right: 10px;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}

.deev-alert .deev-alert-message span {
    flex: 1;
}

.deev-alert .deev-alert-buttons {
    display: flex;
    justify-content: center;
}

.deev-prompt-buttons {
    display: flex;
    justify-content: space-between;
}

.deev-prompt-buttons button {
    flex-basis: calc(50% - 10px);
}

.deev-alert-buttons button, .deev-prompt-buttons button {
    font-size: 12pt;
}

.deev-tabs > ul {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.deev-tabs > ul > li {
    display: block;
    flex-basis: calc(50% - 13px);
}

.deev-tabs > ul > li > span {
    display: block;
    padding: 15px;
	font-weight: bold;
	font-size: 13pt;
	cursor: pointer;
    border: 1px solid var(--border-box-color);
    border-bottom: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
    transition: background-color 0.5s;
}

.deev-tabs > ul > li.active > span {
    background-color: white;
}

.deev-tabs > ul > li:not(.active) > span {
    background-color: var(--border-box-color);
}

.deev-tabs-body {
    position: relative;
    border: 1px solid var(--border-box-color);
    top: -1px;
    background-color: white;
}

.deev-tabs-panel:not(.active) {
    display: none;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--loading-bg);
}

.hidden {
    visibility: hidden;
}

.none {
    display: none ! important;
}

.unfoldable {
    overflow-y: hidden;
    transition: height var(--trans-time);
}

.folded {
    height: 0;
	border: none;
}

.deev-toast {
    position: fixed;
    left: 50%;
    bottom: 0;
    margin-bottom: 50px;
    transform: translateX(-50%);
    background-color: var(--text-color);
    color: white;
    padding: 10px 24px;
    /*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
    z-index: 99;
    white-space: nowrap;
    border-radius: 21px;
    transition: opacity 0.5s;
}

.deev-toast.show {
    opacity: 1;
}

.deev-toast:not(.show) {
    opacity: 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    transition: opacity 0.5s;
}

.modal:not(.whole) {
    padding: 10px;
}

.modal.whole {
    padding: 1px;
}

.modal:not(.show) {
    opacity: 0;
}

.modal.show {
    opacity: 1;
}

.modal-container {
	width: var(--container-width);
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-inner {
	position: relative;
	width: 100%;
	background-color: white;
	border-radius: 4px;
    box-shadow: 0px 0px 5px 01px rgba(0,0,0,0.75);
}

.body-mobile .modal-container {
	width: 100%;
}

.modal-container.median {
	max-width: 1024px;
}

.modal-container.small {
	max-width: 512px;
}

.modal-container.whole {
	
}

.modal-container.box {
    
}

.modal-container.box.plus {
    max-height: 640px ! important;
}

.modal-closer {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    
    background-image: url('../img/close.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 28px 28px;

    align-items: center;
    justify-content: center;
    z-index: 2;
}

.modal-closer:hover {
    font-weight: bold;
}

.modal-content {
    /*position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;*/
}

.deev-cap {
    position: fixed;
    top: 40px;
    bottom: 40px;
    background-color: white;
    box-shadow: 0px 0px 5px 01px rgba(0,0,0,0.75);
    z-index: 99;
}

.deev-cap-top-bar {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.deev-cap-top-bar > span {
    padding: 5px;
    font-size: 24pt;
    width: 20px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.deev-cap-top-bar > span:hover {
    font-weight: bold;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #82A2C4 transparent #82A2C4 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

.lds-dual-ring.gray:after {
    border-color: #82A2C4 transparent #82A2C4 transparent;
}

.load {
	background-image: url('../img/dual-ring.gif');
	background-position: center center;
	background-repeat: no-repeat;
}


.cofesa-loader {
    width: 100%;
    height: 100%;
    background-image: url('../img/logo_simbol_red.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60px auto;
}

.modal-whatsapp-header {
	display: flex;
	align-items: center;
	background-color: #26D367;
	padding: 8px 12px;
}

.modal-whatsapp-header i {
	display: block;
	width: 32px;
	height: 32px;
	background-image: url('../img/whatsapp_white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 10px;
}

.modal-content {
	position: relative;
}

.modal-content > div {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.win-form {
	/*position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;*/
}

#win-loader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.36);
}

#win-loader:not(.loading) {
	display: none;
}

#win-loader > div {
	width: 160px;
	height: 160px;
	background-color: white;
	border: 1px solid #CCC;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#win-loader > div > i {
	display: inline-block;
	width: 60px;
	height: 60px;
	background-image: url('../img/logo_loading.webp');
	background-repeat: no-repeat;
	background-size: 60px;
}

#win-loader > div > span {
	display: inline-block;
	margin-top: 16px;
	text-align: center;
	font-size: 11pt;
}

.modal-whatsapp-header {
	display: flex;
	align-items: center;
	background-color: #26D367;
	padding: 8px 12px;
}

.modal-whatsapp-header > div {
	display: flex;
	align-items: center;
}

.modal-whatsapp-header > span {
	font-size: 16pt;
	font-weight: bold;
	color: white;
}

.modal-whatsapp-header > div > i {
	display: block;
	width: 24px;
	height: 24px;
	background-image: url('../img/whatsapp-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px;
	margin-right: 10px;
}

.modal-whatsapp-header > div > span {
	font-size: 14pt;
	font-weight: bold;
	color: white;
}

.div-dni {
	display: flex;
	align-items: flex-end;
	margin-bottom: 15px;
}

.div-dni > label {
	flex: 1;
	margin-bottom: 0 ! important;
}

.div-dni > button {
	padding: 5px 20px;
	font-size: 12pt;
	border: 1px solid var(--border-control-color);
	background-color: #E9E9ED;
	border-radius: 5px;
	transition: background-color 0.5s;
}

.div-dni > button:hover {
	background-color: #CDCDD7;
}

#div-col:not(.folded) {
	margin-bottom: 15px;
}

#div-col fieldset {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--border-control-color);
	border-radius: 5px;
	padding: 10px 15px 15px 15px;
	margin: 0;
}

#div-col fieldset > label {
	margin-bottom: 0 ! important;
}

#div-col fieldset > legend {
	font-size: 12pt;
	display: inline ! important;
	border: none ! important;
	margin-bottom: 0 ! important;
	width: auto;
}

.close-msg {
	border: 1px solid #87B2C8;
	background-color: #CFE1EC;
	padding: 10px;
	box-sizing: border-box;
	color: #205C80 ! important;
}

.close-msg p {
	margin-top: 0 ! important;
}

.close-msg p:last-child {
	margin-bottom: 0 ! important;
}

.lbl-subject {
	width: 100%;
	margin-bottom: 0 ! important;
}

.lbl-subject {
	margin-top: 15px;
}

.lbl-subject > span:first-child {
	display: block;
	margin-bottom: 5px;
	font-size: 10.5pt;
	font-weight: 500;
	color: #666;
}

.lbl-subject textarea {
	margin-top: 3px;
	width: 100%;
	height: 66px;
	resize: none;
	overflow-y: auto;
}

#lbl-consult {
	margin-top: 15px ! important;
	margin-bottom: 0 ! important;
}

#div-subjects {
	display: block ! important;
}

.modal-whatsapp-content {
	box-sizing: border-box;
	padding: 15px 20px 86px 27px;
	height: 428px;
	overflow-y: scroll;
	scrollbar-width: thin;
}

.modal-whatsapp-content h2 {
	text-align: center;
	font-size: 12pt;
	font-weight: bold;
	margin-bottom: 10px ! important;
}

.modal-whatsapp-content h3 {
	text-align: center;
	font-size: 12pt;
	font-weight: normal;
	margin-bottom: 15px ! important;
}

.modal-whatsapp-content input, .modal-whatsapp-content textarea, .modal-whatsapp-content select, .ul-subject label {
	font-size: 11pt ! important;
}

.modal-whatsapp-content label {
	display: block;
	margin-bottom: 15px;
}

.modal-whatsapp-content label > span:first-child {
	display: block;
	margin-bottom: 5px;
	font-size: 10.5pt;
}

.modal-whatsapp-content label > span:last-of-type {
	display: flex;
	align-items: center;
}

.modal-whatsapp-content label > span > input, .modal-whatsapp-content label > span > select {
	display: block;
	width: 100%;
}

.modal-whatsapp-content label > select, .modal-whatsapp-content label > select > option {
	font-size: 12pt;
}

.modal-whatsapp-content label:not(.val-show) > span > i, 
	.modal-whatsapp-content label:not(.val-show) > strong {
	display: none;
}

.modal-whatsapp-content label > strong {
	display: block;
	line-height: 1;
	margin-top: 5px;
	font-weight: normal;
}

.modal-whatsapp-content label > strong:empty {
	display: none;
}

.modal-whatsapp-content label.success > strong, .modal-whatsapp-content label.success > span > i {
	color: #009900;
}

.modal-whatsapp-content label.error > strong, .modal-whatsapp-content label.error > span > i {
	color: #dc3545;
}

.modal-whatsapp-content label.success > strong, .modal-whatsapp-content label.error > strong {
	font-size: 10pt;
}

.modal-whatsapp-content label > span > i {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	background-size: 20px;
	margin-left: 10px;
}

.modal-whatsapp-content > div {
	display: flex;
	justify-content: center;
}

.modal-whatsapp-content .div-tipo {
	
}

.modal-whatsapp-content .div-tipo > label {
	display: flex;
	align-items: center;
	cursor: pointer;
	flex: 1;
}

.modal-whatsapp-content input[type="radio"] {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.modal-whatsapp-content .div-tipo > label > span {
	margin-bottom: 0 ! important;
	font-size: 11pt;
}

.modal-whatsapp-content .div-tipo > label:first-child {
	flex: 0 0 60%;
}
	
.modal-whatsapp-content [disabled] {
	background-color: #ECECF0;
	border-color: #CECFD2;
}

.ul-subject {
	padding: 0;
	margin: 0;
	list-style: none;
	display: block;
	border: 1px solid var(--border-control-color);
}

.ul-subject.disabled {
	opacity: 0.5;
}

.ul-subject > li {
	display: block;
}

.ul-subject > li > label {
	display: flex;
	align-items: flex-start;
	font-weight: normal ! important;
	padding: 7px 10px;
	margin-bottom: 0 ! important;
	background-color: white;
	transition: background-color 0.5s;
}

.ul-subject:not(.disabled) > li > label {
	cursor: pointer;
}

.ul-subject:not(.disabled) > li:hover > label:not(.selected) {
	background-color: #CDCDD7;
}

.ul-subject > li > label.selected {
	background-color: #A0D8F7;
}

.ul-subject > li > label.disabled {
	opacity: 0.5;
}

.ul-subject > li > label > input {
	position: relative;
}

#txt-doc {
	
}

#txt-doc[maxlength="8"], #txt-col-dni {
	width: 90px;
}

#txt-doc[maxlength="11"] {
	width: 115px;
}

#txt-name {
	width: 315px;
}

#txt-nro {
	width: 98px;
}

#div-chat {
	position: absolute;
	bottom: 0;
	background-color: white;
	width: calc(100% - 50px);
	padding-bottom: 20px;
	padding-top: 10px;
}

.lbl-subject {
	width: 100%;
	margin-bottom: 0 ! important;
}

.lbl-subject {
	margin-top: 15px;
}

.lbl-subject > span:first-child {
	display: block;
	margin-bottom: 5px;
	font-size: 10.5pt;
	font-weight: 500;
	color: #666;
}

.lbl-subject textarea {
	margin-top: 3px;
	width: 100%;
	height: 66px;
	resize: none;
	overflow-y: auto;
}

#lbl-consult {
	margin-top: 15px ! important;
	margin-bottom: 0 ! important;
}

#div-subjects {
	display: block ! important;
}

.icon-ok, .icon-ko {
	background-position: center;
	background-repeat: no-repeat;
}

.icon-ok {
	background-image: url('../img/check.svg');
}

.icon-ko {
	background-image: url('../img/cross.svg');
}

/* Para Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

#walert {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
	padding-left: 14px;
	padding-right: 14px;
	border-radius: 5px;
	line-height: 24px;
	overflow: hidden;
	transition: height 0.5s, padding-top 0.5s, padding-bottom 0.5s, margin-bottom 0.5s;
}

#walert:not(.display) {
	height: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

#walert.display {
	height: 38px;
	margin-bottom: 20px;
	padding-top: 7px;
	padding-bottom: 7px;
}

#btn-chat {
	display: inline-block;
	text-decoration: none;
	padding: 15px 40px;
	background-color: #26D367;
	color: white;
	border-radius: 25px;
	font-size: 12pt;
	transition: background-color 0.5s;
}

#btn-chat:hover {
	background-color: #0D9F45;
}

#btn-chat[disabled] {
	opacity: 0.5;
}

.modal-whatsapp-content h2, .modal-whatsapp-content h3 {
	text-transform: none;
	margin: 0;
	line-height: 1;
}

.modal-whatsapp-content input, .modal-whatsapp-content textarea {
	border: 1px solid var(--border-control-color);
	width: 100%;
	padding: 7px 10px;
	line-height: 24px;
	box-sizing: border-box;
	background-color: white;
}

.modal-whatsapp-content select {
	border: 1px solid var(--border-control-color);
	padding: 5px 10px;
	line-height: 22px;
	box-sizing: border-box;
	background-color: white;
}

.modal-whatsapp-content .none {
	display: none ! important;
}

#txt-dni {
	appearance: textfield;
}

#sel-subject {
	appearance: listbox;
	-moz-appearance: listbox;
	padding: 0 ! important;
	overflow-y: hidden;
}

#sel-subject > option {
	padding: 7px 10px 7px 40px ! important;
	cursor: pointer;
	transition: background-color 0.5s;
}

#sel-subject > option:hover {
	background-color: #CDCDD7;
}

#sel-subject > option:active, #sel-subject > option:focus, #sel-subject > option:checked {
	background-color: #0060DF;
	color: white;
}

#txa-other {
	margin-top: 3px;
	width: 100%;
	height: 66px;
	resize: none;
}

#txt-col-name {
	/*width: 235px;*/
	flex: 1;
}

.datepicker-dropdown {
    left: 50% ! important;
    transform: translateX(-50%) ! important;
}

.play {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 12px solid #2F2F2F;
	cursor: pointer;
	z-index: 1;
	transition: border-color 0.5s;
}

.play:hover {
	border-color: #FFF;
}

.play > div {
	width: 0;
	height: 0;
	border-top: 37.5px solid transparent; 
	border-bottom: 37.5px solid transparent; 
	border-left: 64.95px solid #2F2F2F; 
	margin-left: 18px;
	transition: border-left-color 0.5s;
}

.play:hover > div {
	border-left-color: #FFF;
}

.playing {
	cursor: pointer;
}

.ad {
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	z-index: 9;
	transition: opacity 0.5s;
}

.ad > div {
	height: 100%;
	width: var(--container-width);
}

.body-mobile .add > div {
	width: 100%;
}

.ad:not(.display) {
	opacity: 0;
}

.ad.display {
	opacity: 1;
}

.to-expire {
	padding: 20px;
	box-sizing: border-box;
	height: 100%;
	display: flex;
	align-items: center;
}

.to-expire > div {
	background-color: white;
	border-radius: 10px;
	padding: 10px 15px 15px 15px;
	width: 100%;
}

.to-expire .row {
	margin-bottom: 10px;
}

.to-expire .title {
	font-size: 12pt;
	font-weight: bold;
}

.to-expire .subtitle, .to-expire .subtitle strong {
	font-size: 10pt;
}

.to-expire .clock {
	height: 42px;
}

.to-expire .clock > svg {
	height: 100%;
}
.to-expire .buttons {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
	margin-bottom: 0;
}

.to-expire .buttons button {
	padding: 7px 15px;
	font-size: 11pt;
	font-weight: bold;
}

.to-expire button.blank {
	border: 1px solid var(--border-box-color);
	margin-right: 10px;
}

@keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}