@charset "utf-8";

:root {
	--nar: #FF9900;
	--red: red;
	--green: #269638;
	--green2: #12e735;
	--gris: #f0f0f0;
	--griss: #e8e8e8;
	--white: #FFFFFF;
	--black: #000000;
	--grey: #707070;
	--yell: yellow;

	--op_nar: rgba(255, 153, 0, 0.1);
	--op_nar2: rgba(255, 153, 0, 0.8);
	--op_nar3: rgba(255, 153, 0, 0.15);
	--op_gris: rgba(255, 255, 255, 0.3);
	--op_griss: rgba(232, 232, 232, 0.4);
	--op_red: rgba(255, 0, 0, 0.4);
}

* {
	box-sizing: border-box;
}

/* CSS Document */
html {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 140px 50px 0;
	font-family: 'Roboto Light';
	color: var(--grey);
	position: relative;
	height: calc(100% - 120px);
	font-size: 14px;
	letter-spacing: -0.015em;
}

body.block {
	height: 100%;
	overflow: hidden;
}

*:focus {
	outline: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

button {
	font-family: inherit;
	font-size: 14px;
	letter-spacing: -0.025em;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	color: var(--grey);
}

.clear {
	clear: both;
}

.nar {
	color: var(--nar);
}

.red {
	color: var(--red);
}

.green {
	color: var(--green);
}

.yellow {
	color: var(--yell);
}

.white {
	color: var(--white);
}

.grey {
	color: var(--grey);
}

.stro {
	font-weight: bold;
}

.nobold,
.nobold td,
.nobold th {
	font-weight: normal;
}

.b-nar {
	background-color: var(--nar);
}

.b-red {
	background-color: var(--red);
}

.b-green {
	background-color: var(--green);
}

.w-200 {
	width: 200px;
}

.w-70 {
	width: 70px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

input,
input[type="password"],
input[type="number"],
input[type="submit"],
textarea,
select {
	border: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	resize: none;
}

input[type="text"],
input[type="password"],
textarea,
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="color"],
input[type="search"] {
	padding: 10px 10px 11px;
	border: 1px solid var(--griss);
	width: 100%;
	color: var(--black);
}

input[type="color"] {
	padding: 0;
	width: 50px;
	height: 50px;
	background-color: var(--white);
}

select:focus,
input:focus {
	border-color: var(--nar);
}

input[type="date"] {
	padding: 9px 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
}

select {
	padding: 9px 10px;
	border: 1px solid var(--griss);
	width: 100%;
	color: var(--black);
	cursor: pointer;
}

select.min {
	padding: 4px 10px;
}

input[type="radio"] {
	color: var(--nar);
}

input[readonly] {
	background-color: var(--gris);
	cursor: no-drop;
}

.form_nar label {
	display: block;
	margin: 10px 10px 5px 10px;
}

.form_nar .btn,
.form_nar .btn.minp {
	padding-top: 10px;
	padding-bottom: 10px;
}

label.chkx .nar {
	cursor: pointer;
}

label.chkx .det {
	font-style: italic;
}

.chkx2 label {
	border: 1px solid transparent;
	padding: 10px 10px;
	cursor: pointer;
	font-size: 14px;
	margin: 2px;
}

.chkx2 label .det {
	color: var(--grey);
}

.chkx2 label:hover {
	border: 1px solid var(--nar);
}

.chkx2 input {
	display: none;
}

.chkx2 input:checked+label {
	background-color: var(--nar);
	color: var(--white);
}

.chkx2 input:checked+label .det {
	color: var(--white);
}

label .det {
	font-size: 12px;
	font-style: italic;
}

/* BUTTONS */
.btnesp {
	display: flex;
}

.btnesp button {
	flex: 1;
	text-align: center;
	padding: 10px 0;
	color: var(--black);
	background: var(--white);
	border: 1px solid var(--griss);
	margin-left: -1px;
	transition: all 0.3s;
	border-radius: 0;
	line-height: 20px;
	cursor: pointer;
}

.btnesp.min button {
	padding: 5px 0;
}

.btnesp button:first-child {
	border-left: 1px solid var(--griss);
}

.btnesp button:nth-last-child(2) {
	border-radius: 0;
}

.btnesp button:hover {
	color: var(--white);
	background: var(--op_nar2);
}

.btnesp button.active {
	color: var(--white);
	background: var(--nar);
}

.btnesp button.disabled {
	background-color: var(--gris);
	color: var(--white);
	cursor: not-allowed;
}

/* TEXT */
.t-left {
	text-align: left;
}

.t-right {
	text-align: right;
}

.t-cent {
	text-align: center;
}

.t-justify {
	text-align: justify;
}

/* DISPLAY */
.d-block {
	display: block;
}

.f-0 {
	font-size: 0;
}

.d-inline {
	display: inline-block;
	margin-right: -3px;
}

.d-none {
	display: none;
}

.d-table {
	display: table;
	height: 100%;
}

.d-tcell {
	display: table-cell;
}

/* VERTICAL */
.v-top {
	vertical-align: top;
}

.v-middle {
	vertical-align: middle;
}

.v-bottom {
	vertical-align: bottom;
}

/*OPACITY*/
.o-hidden {
	overflow: hidden;
}


.c_grey {
	color: var(--grey);
}

.c_grey strong,
.c_grey span,
.c_grey h4,
.c_grey a {
	color: var(--green);
}

.c_white {
	color: var(--white);
}

.texto a:hover {
	text-decoration: underline;
}

/* TEXTO */

.texto ul {
	padding-top: 5px;
}

.texto ul li {
	padding-left: 30px;
	margin-bottom: 5px;
}

.texto ul li:before {
	color: var(--grey);
	font-size: 20px;
	line-height: inherit;
	vertical-align: top;
	content: '• ';
	margin-left: -30px;
	padding-right: 15px;
}

.texto.white ul li:before {
	color: var(--white);
}

.texto.ama ul li:before {
	color: #ffcd00;
}

.texto.verd ul li:before {
	color: var(--green);
}

.texto.dosul ul {
	columns: 2
}

.texto.divul ul li {
	display: inline;
	vertical-align: top;
}

.texto.divul ul li:after {
	content: '\A';
	white-space: pre;
}

.texto a {
	color: #ffcd00;
	font-weight: bold;
}

.texto.c_grey a {
	color: var(--grey);
	font-weight: normal;
	text-decoration: underline;
}

.texto.c_white a {
	color: var(--white);
}

.texto .titular {
	font-size: 30px;
	line-height: 35px;
}

.texto .supertitular {
	font-size: 38px;
	line-height: 40px;
}

.btn,
input[type="submit"].btn {
	padding: 7px 40px;
	color: var(--white);
	background: var(--nar);
	border: 1px solid var(--nar);
	transition: all 0.3s;
	cursor: pointer;
	display: inline-block;
}

.btn:disabled,
input[type="submit"].btn:disabled {
	border-color: var(--grey);
	background-color: var(--grey);
	cursor: no-drop;
}

.btn:not(:disabled):hover,
input[type="submit"].btn:not(:disabled):hover,
.btn:not(:disabled).active {
	color: var(--nar);
	background: transparent;
}

.btn.minp {
	padding: 7px 20px;
}

.btn2,
input[type="submit"].btn2 {
	display: inline-block;
	margin: 0 2.5px 2.5px;
	padding: 5px 10px;
	color: var(--white);
	background: var(--nar);
	border: 1px solid var(--nar);
	transition: all 0.3s;
	cursor: pointer;
}

.btn2:hover,
input[type="submit"].btn2:hover,
.btn2.active {
	color: var(--nar);
	background: transparent;
}


.btngr {
	padding: 5px 10px;
	color: var(--white);
	background: var(--grey);
	border: 1px solid var(--grey);
	transition: all 0.3s;
}

.btngr:hover {
	color: var(--grey);
	background: var(--white);
}

.btn.invert {
	color: var(--nar);
	background: var(--white);
}

.btn.invert:hover {
	color: var(--white);
	background: var(--nar);
	border: 1px solid var(--white);
}

.btn.btn-xs {
	padding: 1px 5px;
}

.btn.btn-xs2 {
	padding: 5px 25px;
	font-size: 12px;
}

.btn.btn-xl {
	padding: 10px 20px;
	font-size: 18px;
}

.btnnar {
	padding: 5px 10px;
	color: var(--white);
	border: 1px solid transparent;
	background: var(--nar);
	background: -webkit-linear-gradient(left, #c6440c, #e4ae00);
	background: -o-linear-gradient(right, #c6440c, #e4ae00);
	background: -moz-linear-gradient(right, #c6440c, #e4ae00);
	background: linear-gradient(to right, #c6440c, #e4ae00);
	transition: all 0.3s;
	font-size: 18px;
	;
}

.btnnar:hover {
	color: var(--nar);
	border: 1px solid var(--nar);
	background: none;
}

.ft-8 {
	font-size: 8px;
}

.ft-9 {
	font-size: 9px;
}

.ft-10 {
	font-size: 10px;
}

.ft-11 {
	font-size: 11px;
}

.ft-12 {
	font-size: 12px;
}

.ft-14 {
	font-size: 14px;
}

.ft-16 {
	font-size: 16px;
}

.ft-18 {
	font-size: 18px;
}

.ft-20 {
	font-size: 20px;
}

.ft-22 {
	font-size: 22px;
}

.ft-23 {
	font-size: 23px;
}

.ft-24 {
	font-size: 24px;
}

.ft-26 {
	font-size: 26px;
}

.ft-28 {
	font-size: 28px;
}

.ft-30 {
	font-size: 30px;
}

.ft-32 {
	font-size: 32px;
}

.ft-34 {
	font-size: 34px;
}

.ft-35 {
	font-size: 35px;
}

.ft-36 {
	font-size: 36px;
}

.ft-40 {
	font-size: 40px;
}

.ft-44 {
	font-size: 44px;
}

.ft-46 {
	font-size: 46px;
}

.ft-48 {
	font-size: 48px;
}

.ft-50 {
	font-size: 50px;
}

.ft-52 {
	font-size: 52px;
}

.ft-54 {
	font-size: 54px;
}

.ft-56 {
	font-size: 56px;
}

.ft-58 {
	font-size: 58px;
}

.ft-60 {
	font-size: 60px;
}

.lh-30 {
	line-height: 30px;
}

.lh-32 {
	line-height: 32px;
}

.lh-35 {
	line-height: 35px;
}

.lh-38 {
	line-height: 38px;
}

.lh-40 {
	line-height: 40px;
}

.lh-45 {
	line-height: 45px;
}

.lh-55 {
	line-height: 55px;
}

.ftl {
	/*font-family: 'Roboto Thin';*/
}

/* WIDTH */
.w-1x {
	width: 1%;
}

.w-2x {
	width: 2%;
}

.w-3x {
	width: 3%;
}

.w-4x {
	width: 4%;
}

.w-5x {
	width: 5%;
}

.w-6x {
	width: 6%;
}

.w-7x {
	width: 7%;
}

.w-8x {
	width: 8%;
}

.w-9x {
	width: 9%;
}

.w-10x {
	width: 10%;
}

.w-11x {
	width: 11%;
}

.w-12x {
	width: 12%;
}

.w-13x {
	width: 13%;
}

.w-14x {
	width: 14%;
}

.w-15x {
	width: 15%;
}

.w-16x {
	width: 16%;
}

.w-17x {
	width: 17%;
}

.w-18x {
	width: 18%;
}

.w-19x {
	width: 19%;
}

.w-20x {
	width: 20%;
}

.w-21x {
	width: 21%;
}

.w-22x {
	width: 22%;
}

.w-23x {
	width: 23%;
}

.w-24x {
	width: 24%;
}

.w-25x {
	width: 25%;
}

.w-26x {
	width: 26%;
}

.w-27x {
	width: 27%;
}

.w-28x {
	width: 28%;
}

.w-29x {
	width: 29%;
}

.w-30x {
	width: 30%;
}

.w-31x {
	width: 31%;
}

.w-32x {
	width: 32%;
}

.w-33x {
	width: 33%;
}

.w-34x {
	width: 34%;
}

.w-35x {
	width: 35%;
}

.w-36x {
	width: 36%;
}

.w-37x {
	width: 37%;
}

.w-38x {
	width: 38%;
}

.w-39x {
	width: 39%;
}

.w-40x {
	width: 40%;
}

.w-41x {
	width: 41%;
}

.w-42x {
	width: 42%;
}

.w-43x {
	width: 43%;
}

.w-44x {
	width: 44%;
}

.w-45x {
	width: 45%;
}

.w-46x {
	width: 46%;
}

.w-47x {
	width: 47%;
}

.w-48x {
	width: 48%;
}

.w-49x {
	width: 49%;
}

.w-50x {
	width: 50%;
}

.w-51x {
	width: 51%;
}

.w-52x {
	width: 52%;
}

.w-53x {
	width: 53%;
}

.w-54x {
	width: 54%;
}

.w-55x {
	width: 55%;
}

.w-56x {
	width: 56%;
}

.w-57x {
	width: 57%;
}

.w-58x {
	width: 58%;
}

.w-59x {
	width: 59%;
}

.w-60x {
	width: 60%;
}

.w-61x {
	width: 61%;
}

.w-62x {
	width: 62%;
}

.w-63x {
	width: 63%;
}

.w-64x {
	width: 64%;
}

.w-65x {
	width: 65%;
}

.w-66x {
	width: 66%;
}

.w-67x {
	width: 67%;
}

.w-68x {
	width: 68%;
}

.w-69x {
	width: 69%;
}

.w-70x {
	width: 70%;
}

.w-71x {
	width: 71%;
}

.w-72x {
	width: 72%;
}

.w-73x {
	width: 73%;
}

.w-74x {
	width: 74%;
}

.w-75x {
	width: 75%;
}

.w-76x {
	width: 76%;
}

.w-77x {
	width: 77%;
}

.w-78x {
	width: 78%;
}

.w-79x {
	width: 79%;
}

.w-80x {
	width: 80%;
}

.w-81x {
	width: 81%;
}

.w-82x {
	width: 82%;
}

.w-83x {
	width: 83%;
}

.w-84x {
	width: 84%;
}

.w-85x {
	width: 85%;
}

.w-86x {
	width: 86%;
}

.w-87x {
	width: 87%;
}

.w-88x {
	width: 88%;
}

.w-89x {
	width: 89%;
}

.w-90x {
	width: 90%;
}

.w-91x {
	width: 91%;
}

.w-92x {
	width: 92%;
}

.w-93x {
	width: 93%;
}

.w-94x {
	width: 94%;
}

.w-95x {
	width: 95%;
}

.w-96x {
	width: 96%;
}

.w-97x {
	width: 97%;
}

.w-98x {
	width: 98%;
}

.w-99x {
	width: 99%;
}

.w-100x {
	width: 100%;
}

/* ESPECIALES */
.w-12-5x {
	width: 12.5%;
}

.w-16-6x {
	width: 16.66%;
}

.w-26-6x {
	width: 26.66%;
}

.w-33-3x {
	width: 33.33%;
}

.w-49-8x {
	width: 49.88%;
}

.w-66-6x {
	width: 66.66%;
}

.w-83-4x {
	width: 83.33%;
}


.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-16 {
	margin-bottom: 16px;
}

.mb-17 {
	margin-bottom: 17px;
}

.mb-18 {
	margin-bottom: 18px;
}

.mb-19 {
	margin-bottom: 19px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb--20 {
	margin-bottom: -20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-26 {
	margin-bottom: 26px;
}

.mb-27 {
	margin-bottom: 27px;
}

.mb-28 {
	margin-bottom: 28px;
}

.mb-29 {
	margin-bottom: 29px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-31 {
	margin-bottom: 31px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-55 {
	margin-bottom: 55px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-65 {
	margin-bottom: 65px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-85 {
	margin-bottom: 85px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-95 {
	margin-bottom: 95px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-110 {
	margin-bottom: 110px;
}

.mb-120 {
	margin-bottom: 120px;
}

.mb-130 {
	margin-bottom: 130px;
}

.mb-140 {
	margin-bottom: 140px;
}

.mb-150 {
	margin-bottom: 150px;
}

.mb-160 {
	margin-bottom: 160px;
}

.mb-170 {
	margin-bottom: 170px;
}

.mb-180 {
	margin-bottom: 180px;
}

.mb-190 {
	margin-bottom: 190px;
}

.mb-200 {
	margin-bottom: 200px;
}

.pb-2 {
	padding-bottom: 2px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-100 {
	padding-bottom: 100px;
}

.plr-5 {
	padding: 0 5px;
}

.plr-10 {
	padding: 0 10px;
}

.plr-20 {
	padding: 0 20px;
}

.ptb-10 {
	padding: 10px 0;
}

.ptb-20 {
	padding: 20px 0;
}

.pr-10 {
	padding-right: 10px;
}

.pl-10 {
	padding-left: 10px;
}

.ptb-5 {
	padding-top: 5px;
	padding-bottom: 5px;
}

.pt-5 {
	padding-top: 5px;
}

.p-5 {
	padding: 5px;
}

.p-10 {
	padding: 10px;
}

.p-20 {
	padding: 20px;
}

.mlr-5 {
	margin: 0 5px;
}

.mlr-10 {
	margin: 0 10px;
}

.mlr-15 {
	margin: 0 15px;
}

.mlr-20 {
	margin: 0 20px;
}

.mlr-25 {
	margin: 0 25px;
}

.mlr-30 {
	margin: 0 30px;
}

.mlr-35 {
	margin: 0 35px;
}

.mlr-40 {
	margin: 0 40px;
}

.ml-5 {
	margin-left: 5px;
}

.ml-15 {
	margin-left: 15px;
}

.mr-5 {
	margin-right: 5px;
}

.mx-5 {
	margin: 0 5px;
}

.h-20 {
	height: 20px;
}

.h-30 {
	height: 30px;
}

.h-40 {
	height: 40px;
}

.h-50 {
	height: 50px;
}

.h-100 {
	height: 100px;
}

.h-150 {
	height: 150px;
}

.h-200 {
	height: 200px;
}

.h-250 {
	height: 250px;
}

.h-300 {
	height: 300px;
}

.h-350 {
	height: 350px;
}

.h-400 {
	height: 400px;
}

.h-450 {
	height: 450px;
}

.h-50x {
	height: 50%;
}

.h-60x {
	height: 60%;
}

.h-70x {
	height: 70%;
}

.h-80x {
	height: 80%;
}

.h-90x {
	height: 90%;
}

.h-100x {
	height: 100%;
}

.h-120x {
	height: 120%;
}

.vh-50 {
	height: 50vh;
}

.vh-100 {
	height: 100vh;
}


.p-relative {
	position: relative;
}

.p-absolute {
	position: absolute;
}

.p-fixed {
	position: fixed;
}

.mauto {
	margin: 0 auto;
}

.minh {
	min-height: calc(100vh - 215px);
}

.minh2 {
	min-height: calc(100vh - 240px);
}

#staticbackground {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background: url(../img/background.jpg) no-repeat center bottom;
	background-size: 100% auto;
}

.logodark {
	display: none;
}

.logolight {
	display: inline;
}

.logogr img {
	width: 250px;
	margin: 0 auto;
}

.logobr img {
	width: 300px;
	margin: 0 auto;
}

.subemp {
	margin-left: 20px;
}

.subemp img {
	width: inherit;
	max-width: 200px;
	max-height: 50px;
}

.floatcent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.floatvcent {
	position: relative;
	top: 50%;
	transform: translate(0, -50%);
}

.degradee2 {
	background: #d37f00;
	background: -webkit-linear-gradient(left, #c6440c, #e4ae00);
	background: -o-linear-gradient(right, #c6440c, #e4ae00);
	background: -moz-linear-gradient(right, #c6440c, #e4ae00);
	background: linear-gradient(to right, #c6440c, #e4ae00);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-clip {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.text-uppercase {
	text-transform: uppercase;
}

.colortable {
	font-size: 16px;
}

.colortable thead {
	color: var(--nar);
	font-family: 'Roboto Thin';
	font-size: 14px;
}

.colortable thead>tr>th {
	padding: 7px 5px;
}

.colortable>thead>tr>th:first-child,
.colortable>tbody>tr>td:first-child {
	text-align: left;
	padding-left: 20px;
}

.colortable>thead>tr>th:last-child,
.colortable>tbody>tr>td:last-child {
	padding-right: 20px
}

.colortable tbody tr td {
	padding: 7px 5px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	transition: all 0.3s;
}

.colortable tbody tr td:first-child {
	border-left: 1px solid transparent;
}

.colortable tbody tr td:last-child {
	border-right: 1px solid transparent;
}

.colortable tbody tr:hover td {
	border-top: 1px solid var(--nar);
	border-bottom: 1px solid var(--nar);
}

.colortable tbody tr:hover td:first-child {
	border-left: 1px solid var(--nar);
}

.colortable tbody tr:hover td:last-child {
	border-right: 1px solid var(--nar);
}

.colortable tbody tr:nth-child(odd),
.colortable tbody tr.odd {
	background-color: var(--op_nar);
}

.colortable tbody tr:nth-child(even),
.colortable tbody tr.even {
	background-color: var(--op_gris);
}

.colortable tbody tr td span {
	color: var(--nar);
}

.colortable tbody tr td span.green {
	color: var(--green);
}

.colortable tbody tr td span.red {
	color: var(--red);
}

.colortable tbody tr td.icons {
	width: 100px;
	text-align: right;
}

.colortable tbody tr td.icons a,
.colortable tbody tr td.icons button {
	color: var(--nar);
	display: inline-block;
	margin-left: 10px;
	font-size: 20px;
}

.colortable tbody tr td.icons a:hover,
.colortable tbody tr td.icons button:hover,
.colortable tbody tr td .icons a:hover,
.colortable tbody tr td .icons button:hover {
	color: var(--black);
}

.colortable tbody tr td.icons button.btn,
.colortable tbody tr td .icons button.btn {
	color: var(--white);
}

.colortable tbody tr td.icons button.btn:hover,
.colortable tbody tr td .icons button.btn:hover {
	color: var(--nar);
}

.colortable.fixhead thead tr th {
	position: sticky;
	top: 0;
	z-index: 1;
	background-color: #fff;
}

.colortable tbody tr td.number span {
	text-align: center;
	display: inline-block;
	width: 39px;
	height: 39px;
	border: 1px solid var(--nar);
	border-radius: 100%;
	font-size: 25px;
	line-height: 30px;
	padding-top: 5px;
	color: var(--grey)
}

.colortable table {
	display: inline;
}

.colortable table td {
	border: none !important;
}

.colortable tr:hover table td {
	border: none !important;
}

table.tablecursor tbody tr {
	cursor: pointer;
}

#access {
	width: 400px;
}

#access #form-rec {
	width: 100%;
	top: 0;
	border: 2px solid var(--white);
	padding: 10px;
	background: var(--nar);
	color: var(--white);
	display: none;
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 20px 50px 15px;
	background: var(--white);
	z-index: 100;
	min-height: 80px;
	border-bottom: 1px solid var(--griss);
	box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

header #iconsmen {
	margin-bottom: 14px;
}

header #iconsmen a {
	margin-left: 15px;
}

header #iconsmen a.select i {
	color: var(--black);
}

header #iconsmen i {
	font-size: 22px;
}

header #iconsmen li span {
	cursor: pointer;
}

header #iconsmen li {
	display: inline-block;
	vertical-align: middle;
}

header #iconsmen li ul {
	position: absolute;
	display: none;
	width: 76px;
	right: -38px;
	background: var(--white);
	text-align: center;
	padding: 5px;
	border: 1px solid var(--nar);
	border-radius: 15px;
	z-index: 122;
}

header #iconsmen li:hover ul {
	display: block;
}

header #iconsmen li ul li {
	display: block;
}

header #iconsmen li ul li a {
	margin: 0;
	display: block;
}

header #iconsmen li ul li span:hover {
	color: #d89423;
}

header nav a#pull {
	display: none;
}

header nav #primer li {
	display: inline-block;
	margin-left: 1rem;
	position: relative;
	padding: 3px 5px;
	background-color: var(--white);
}

header nav #primer li,
header nav #primer li a,
header nav #primer li span {
	transition: all 0.3s;
}

header nav #primer li a:hover,
header nav #primer li span:hover {
	color: #d89423;
}

header nav #primer li.select span,
header nav #primer li.select a {
	color: var(--nar);
}


header nav #primer li.select li a,
header nav #primer li.select li span {
	color: var(--grey);
}

header nav #primer li li:hover,
header nav #primer li li.select {
	background-color: var(--nar);
}

header nav #primer li li:hover a,
header nav #primer li li:hover span,
header nav #primer li li.select a,
header nav #primer li li.select span {
	color: var(--white);
}

header nav #primer li>.segund {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	width: 150px;
	text-align: center;
	z-index: 10;
	border: 1px solid var(--griss);
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

header nav #primer li>.segund li {
	display: block;
	margin: 0;
}

header nav #primer li:hover>.segund {
	display: block;
}

header #headport:not(:empty) {
	padding: 0;
}

#content.headport {
	padding: 50px 0 100px;
}

.chart {
	display: inline-block;
	height: 300px;
	width: 300px;
	margin: 0 1%;
}

#welcome #cortexto {
	max-height: 125px;
	overflow: hidden;
	transition: all 0.5s;
}

#welcome #cortexto.ver {
	max-height: 1000px;
}

#welcome a#flecha {
	background: var(--nar);
	width: 80px;
	height: 80px;
	border-radius: 100%;
	display: block;
	position: relative;
	bottom: 1%;
	left: 50%;
	transform: translate(-50%, 0);
	margin: 5% 0;
}

#welcome a#flecha i {
	font-size: 70px;
	color: var(--white);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.tokenize {
	border: 1px solid var(--nar);
	padding: 10px;
	background: var(--white);
	max-height: 200px;
	overflow: auto;
}

#observaciones .obs {
	display: inline-block;
	width: 39px;
	height: 39px;
	border: 1px solid var(--nar);
	border-radius: 100%;
	font-size: 25px;
	line-height: 30px;
	padding-top: 5px;
}

.mzcode {
	font-weight: 700;
	font-style: italic;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	padding: 5px 50px;
	z-index: 99;
	border-top: 1px solid var(--griss);
	box-shadow: 0px -15px 10px -5px rgba(0, 0, 0, 0.05)
}

footer .subline {
	text-align: center;
}

footer .content:not(:empty) {
	padding: 5px 0 20px;
}



#admin_clients #integrantes .item {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--nar);
}

#admin_clients #integrantes .item .row {
	margin-bottom: 5px;
}


#portfolio .product {
	border-bottom: 1px solid var(--nar);
	margin-bottom: 40px;
}

#portfolio .product table td {
	vertical-align: top;
}

#portfolio .product .rentabilidad .radius {
	padding: 15px;
	border: 1px solid var(--nar);
	border-radius: 100%;
	position: relative;
	width: 50px;
	height: 50px;
}

#portfolio .product .rentabilidad .radius .radiuscnt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

#portfolio .product .rentabilidad .radius .top {
	color: var(--green);
	font-weight: bold;
}

#portfolio .product .rentabilidad .radius .bottom {
	color: var(--red);
	font-weight: bold;
}


#portfolio .product .resumen {
	width: 250px;
}

#portfolio .product .contenido {
	width: calc(100% - 270px);
	margin-left: 20px;
}

#portfolio .product .contenido .asset_item {
	position: relative;
	background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

#portfolio .supclose {
	padding: 10px;
}



.tab,
.tab2 {
	padding: 10px 20px;
	background: var(--gris);
	margin-right: 5px;
	transition: all 0.3s;
}

.tab:hover,
.tab.active,
.tab2:hover,
.tab2.active {
	background: var(--nar);
	color: var(--white);
}

/*
.tab-container {
	border-bottom: 1px solid var(--nar);
}
*/
.tab-container .tab-content {
	display: none;
	padding: 10px 0;
	position: relative;
}

.tab-container.no-border {
	border: none;
}

.tab-container .tab-list {
	border-bottom: 1px solid var(--nar);
}

.tab-container .tab-list li {
	position: relative;
	cursor: pointer;
}

.tab-container .tab-list li .btns {
	display: inline-block;
	position: relative;
	margin-left: 10px;
}

.tab-container .tab-list li .btns button {
	color: var(--grey);
	padding: 3px;
	transition: all 0.3s;
}

.tab-container .tab-list li:hover .btns button,
.tab-container .tab-list li.active .btns button {
	color: white;
}

.tab-container .tab-list li .btns button:hover {
	color: red;
}

.tab-list {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
}

.tab-list.left {
	justify-content: start;
}

.tab-container.vertical {
	display: flex;
}

.tab-container.vertical .tab-list {
	display: block;
	width: 150px;
	border-right: 1px solid var(--nar);
	border-bottom: none;
}

.tab-container.vertical .tab-content {
	width: 100%;
	padding: 0 0 0 10px;
	border-bottom: none;
}

.tab-container.vertical .tab-list li {
	margin-bottom: 7px;
}

.tab-container.vertical .tab-content {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--nar);
}

.tab-container.shadow .tab-list {
	border-bottom: none;

}

.tab-container.shadow .tab-content {
	padding: 10px 0 20px;
	background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.5s;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}


.tab-content2 {
	padding: 50px 0 10px 0;
}

.tab-content .posicionado {
	position: absolute;
	right: 0;
	top: -40px;
}

.tab-content .quote {
	margin: 0 -10px;
	border: 1px solid var(--griss);
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
	padding: 10px;
}

.tab-content.noborder {
	border: none;
	padding-top: 0;
}

.tab-content.active {
	display: block;
}

.buscador {
	position: relative;
	text-align: right;
}

.buscador label,
.buscador input {
	display: inline-block;
}

.buscador input {
	width: 50%;
}

.buscador button.srch {
	cursor: default;
	font-size: 17px;
	top: 0;
	color: var(--white);
	background: var(--nar);
	padding: 4px 10px;
	vertical-align: bottom;
}

.buscador #buscador {
	padding: 10px 10px;
	border: 1px solid var(--griss);
}

.buscador #buscador:focus {
	border-color: var(--nar);
}

#portfolio_ver aside {
	position: fixed;
	top: 130px;
	width: 250px;
	left: 50px;
	transform: translate(0, 0);
}

#portfolio_ver #container {
	width: calc(100% - 270px);
	margin-left: 270px;
	padding-bottom: 100px;
}

#portfolio_ver .grafico {
	height: 300px
}

#portfolio_ver .wgrafic .grafico {
	height: 250px
}

#portfolio_ver .wgrafic .itemasset {
	position: relative;
	width: 90%;
	text-align: right;
	background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

#portfolio_ver .wgrafic .itemasset .supclose {
	padding: 10px;
}

#portfolio_ver .radius {
	padding: 15px;
	border: 1px solid var(--nar);
	border-radius: 100%;
	position: relative;
	width: 50px;
	height: 50px;
}

#portfolio_ver .radius .radiuscnt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

#portfolio_ver .radius .radiuscnt .green {
	font-weight: bold;
	color: var(--green);
}

#portfolio_ver .radius .radiuscnt .red {
	font-weight: bold;
	color: var(--red);
}

#product_graf {
	width: 850px;
	height: 300px;
	position: fixed;
	top: 50%;
	right: -100%;
}

#product_graf canvas {
	width: 100%;
	height: 100%;
}

#portfolio_ver #notifica {
	text-align: left;
}

#portfolio_ver #notifica .itemnoti {
	display: inline-block;
	width: 17%;
	margin-right: 3%;
	background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

#portfolio_ver #notifica .itemnoti .message {
	font-weight: bold;
}

#news,
#productsbb {
	border-bottom: 1px solid var(--nar);
	padding-bottom: 40px;
	margin-bottom: 50px;
}

#containernews {
	max-height: 410px;
	overflow: hidden;
	transition: all 1s;
}

#containernews.ver {
	max-height: 50000px;
}

#containernews .news {
	display: inline-block;
	vertical-align: top;
	width: calc(25% - 60px);
	min-height: 160px;
	margin: 0 30px 60px;
	background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.5s;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

#containernews .news:hover {
	border: 1px solid var(--nar);
}

#containernews .news .asset {
	margin-bottom: 5px;
	padding: 10px 10px 10px 20px;
	color: var(--white);
	background-color: var(--nar);
	display: inline-block;
}

#containernews .news a>span {
	display: block;
}

#containernews .news .cont {
	padding: 20px;
}

#containernews .news .title {
	font-weight: bold;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 5px;
	display: block;
}

#containernews .news .date {
	margin-bottom: 10px;
}

#containernews .news .imagen {
	width: 100%;
	height: 170px;
	background-color: var(--red);
	margin-bottom: 10px;
	background-size: cover;
	background-position: center center;
}

#containernews .news .contenido {
	line-height: 20px;
	margin-bottom: 10px;
}

#containernews .news .link {
	color: var(--nar);
}

#containernews .news .link a:hover {
	text-decoration: underline;
}


#paydates .obs {
	text-align: center;
	display: inline-block;
	width: 39px;
	height: 39px;
	border: 1px solid var(--nar);
	border-radius: 100%;
	font-size: 25px;
	line-height: 30px;
	padding-top: 5px;
}

@media(max-width:1400px) {
	.wgrafic {
		width: 50%
	}

	.modal {
		max-width: 50vw !important;
	}

	.modal.modal-medium {
		max-width: 70vw !important;
	}

	.modal.modal-full {
		max-width: 90vw !important;
	}
}

@media(max-width:1300px) {
	body {
		padding: 20px 40px 0;
	}

	header {
		width: 100%;
		padding: 20px 35px;
	}

	.colortable {
		font-size: 14px;
	}

	.ft-30 {
		font-size: 20px;
	}

	.ft-60 {
		font-size: 50px;
	}

	.lh-55 {
		line-height: 45px;
	}

	#portfolio aside,
	#portfolio_ver aside {
		width: 200px;
		left: 35px;
	}

	#portfolio #container,
	#portfolio_ver #container {
		width: 100%;
		margin-left: 240px;
	}

	#filters .filter {
		margin-right: 4%;
	}

	.modal {
		max-width: 60vw !important;
	}


}

#filters .filter label {
	margin-top: 0;
}

.dataTables_wrapper div[class^="col-"] {
	vertical-align: top;
}

.dataTables_wrapper .col-md-5 {
	display: inline-block;
	width: calc(5*8.3%);
}

.dataTables_wrapper .col-md-6 {
	display: inline-block;
	width: calc(6*8.3%);
}

.dataTables_wrapper .col-md-7 {
	display: inline-block;
	width: calc(7*8.3%);
}

.dataTables_info {
	text-align: left;
}

.dataTables_filter {
	float: right;
}

.dataTables_filter input {
	margin-left: 5px;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_desc_disabled {
	background: 0 0;
}

.dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	padding-top: .25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: .5em .3em;
	margin-left: 2px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	color: var(--nar);
	border: 1px solid transparent;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previus,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
	padding: .5em 1em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button a {
	display: block;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: var(--white);
	border: 1px solid #3e8ef7;
	background-color: #3e8ef7;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
	cursor: not-allowed;
	color: var(--grey);
	border: 1px solid transparent;
	background: 0 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled a,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active a,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover a {
	cursor: not-allowed;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: var(--white);
	background-color: var(--nar);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.active {
	outline: 0;
	color: var(--white);
	background-color: var(--nar);
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
	padding: 0 1em;
}

.colortable2 tbody tr td {
	padding: 10px 0;
}

.colortable2 thead {
	font-family: 'Roboto Thin';
	font-size: 14px;
	position: sticky;
	top: 0;
	background-color: var(--white);
	color: var(--nar);
	z-index: 100;
}

.colortable2 thead tr th {
	padding: 10px 0;
}

.colortable2 .bselected {
	background: var(--op_nar);
}

.colortable2 .btnselop button {
	display: none;
}

.colortable2 tr:hover .btnselop button {
	display: inline-block;
}

.colortable2 .btnselop button:hover {
	color: var(--nar);
}

.notshow {
	display: none;
}



#unders_new {
	padding: 10px;
	border: 1px solid var(--griss);
	max-height: 294px;
	overflow: auto;
}

#unders_new table thead {
	font-family: 'Roboto Thin';
	font-size: 14px;
	color: var(--nar);
}

#unders_new table tbody td:nth-child(2),
#unders_new table tbody td:nth-child(3) {
	width: 100px;
}

#unders_new table tbody td:nth-child(4) {
	width: 17px;
}

#unders_new table tbody td input[type="text"] {
	width: 120px;
}

#unders_new table tbody td {
	color: var(--black);
}

#unders_new table tbody tr:nth-child(odd) {
	background-color: var(--op_nar);
}



.btnesp2 {
	display: block;
}

.btnesp2 button {
	flex: none;
	padding: 10px;
	display: inline-block;
	margin-bottom: 5px;
}

.btnesp2 a span {
	font-size: 10px;
	vertical-align: top;
}

/* EL plugin de assets */

.assets-plugin-wrapper {
	text-align: left;
	position: relative;
}


.assets-plugin-wrapper input[type="search"] {
	text-align: left !important;
	padding: 10px 10px 11px;

}

.assets-plugin-wrapper .assets-results {
	max-height: 300px;
	overflow-y: auto;
	border: 1px solid var(--griss);
	border-radius: 0 0 8px 8px;
	margin-bottom: 20px;
	background: white;
	position: absolute;
	width: 100%;
	z-index: 1000;
}

.dark .assets-plugin-wrapper .assets-results {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--griss)
}

.assets-plugin-wrapper .item {
	padding: 12px 15px;
	border-bottom: 1px solid var(--griss);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s;
}

.dark .assets-plugin-wrapper .item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.assets-plugin-wrapper .item:hover {
	background: var(--nar);
}

.assets-plugin-wrapper .item .name {
	font-size: 16px;
	color: black;
	font-weight: bold;
}

.assets-plugin-wrapper .item:hover .name {
	color: white;
}

.dark .assets-plugin-wrapper .item .name {
	color: white
}

.assets-plugin-wrapper .item .country {
	font-size: 12px;
	color: var(--nar);
}

.assets-plugin-wrapper .item:hover .country {
	color: white;
}

.dark .assets-plugin-wrapper .item .country {
	color: white;
}

.assets-plugin-wrapper .item .code {
	font-size: 12px;
	color: grey;
}

.dark .assets-plugin-wrapper .item .code {
	color: white;
}

.assets-plugin-wrapper .item:hover .code {
	color: white;
}

/* Botón de Assign */
.assets-plugin-wrapper .add-asset .btn.submit {
	width: 100%;
	padding: 12px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #FF9900;
	border: none;
	border-radius: 6px;
	color: white;
	cursor: pointer;
}

.assets-plugin-wrapper .add-asset .btn.submit:hover {
	background: #e68a00;
}

.assets-plugin-wrapper .selected-assets-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 20px;
	margin-bottom: 20px;
}

/* EL NUEVO PINTADO DE LOS ASSETS */
#assets {
	padding: 10px;
	border: 1px solid var(--griss);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

#assets .asset-tag {
	background: rgba(255, 153, 0, 0.15) !important;
	border: 1px solid rgba(255, 153, 0, 0.3) !important;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 12px;
	border-radius: 6px;
	transition: transform 0.2s;
	text-align: left;
}

#assets .asset-tag .content {
	display: flex;
	flex-direction: column;
}

#assets .asset-tag .content .name {
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: bold;
}

#assets .asset-tag .content .code {
	font-size: 10px;
}

#assets .asset-tag .remove-selected {
	background: transparent;
	border: none;
	color: #ff6161;
	font-size: 20px;
	cursor: pointer;
	padding: 0 5px;
	line-height: 1;
}

#assets .asset-tag:hover {
	transform: translateY(-1px);
}

#assets .asset-tag .remove-selected:hover {
	color: #ff6161;
}


@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeIn 0.3s ease-out;
}

#assets-plugin-modal .asset-tag {
	background: rgba(255, 153, 0, 0.15) !important;
	border: 1px solid rgba(255, 153, 0, 0.3) !important;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 12px;
	border-radius: 6px;
	transition: transform 0.2s;
}

#assets-plugin-modal .asset-tag:hover {
	transform: translateY(-1px);
}

#assets-plugin-modal .asset-tag .remove-selected:hover {
	color: #ff6161;
}

#assets-plugin-modal .asset-tag .content {
	display: flex;
	flex-direction: column;
}

#assets-plugin-modal .asset-tag .content .name {
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: bold;
}

#assets-plugin-modal .asset-tag .content .code {
	font-size: 10px;
}




#items {
	margin: 50px -30px 0;
}

#items .item {
	display: inline-block;
	vertical-align: top;
	width: calc(25% - 60px);
	min-height: 460px;
	margin: 0 30px 60px;
	padding: 30px 0 20px;
	background-color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.5s;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

#items .item[data-click="false"] {
	cursor: default;
}

#items .item:hover {
	border-color: var(--nar) !important;
}

#items .item>a {
	display: block;
	width: 100%;
	height: 100%;
}

#admin #items .item {
	text-align: left;
	min-height: 300px;
}

#overview #items .item {
	text-align: left;
	padding: 10px 0 75px;
	min-height: 490px;
	position: relative
}

#overview #items .item .status {
	padding: 5px 5px 10px;
	text-align: center;
	color: #FFF;
	position: absolute;
	width: 100%;
	bottom: 0;
}

#overview #items .item.stclose .status {
	background-color: #000;
}

#overview #items .item.stdanger .status {
	background-color: var(--red);
}

#overview #items .item.stwarning .status {
	background-color: var(--green2);
	color: #000;
}

#overview #items .item.stsuccess .status {
	background-color: var(--green);
}

#overview #items .item.stprimary .status {
	background-color: var(--nar);
}

#news #items .item {
	min-height: 280px;
}

#items .item .red {
	color: var(--red);
}

#items .item .cab {
	padding: 0 20px 20px;
}

#items .item table {
	width: 100%;
}

#items .item table td:first-child {
	padding-left: 20px;
}

#items .item table td:last-child {
	padding-right: 20px;
}

#items .item table tr.dest td {
	background-color: rgba(255, 153, 0, 0.15);
}

#items .item table.ta td:last-child {
	text-align: right;
	font-weight: bold;
}

#items .item table.tb td:first-child {
	text-align: left;
}

#items .item table.tb td {
	text-align: right;
}

#items .item .green {
	color: var(--green);
}

#items .item .comments {
	padding: 0 20px 20px;
}


@media screen and (max-width:1600px) {
	#items .item {
		width: calc(33.333% - 60px);
	}
}

.checktb thead {
	color: var(--nar);
}

.checktb thead th {
	padding: 0 0 10px;
	font-family: 'Roboto Thin';
}

.checktb tbody tr:nth-child(odd) {
	background-color: var(--op_nar);
}

.checktb tbody tr:nth-child(even) {
	background-color: var(--op_gris);
}

.checktb tbody tr.active {
	background-color: var(--nar);
	color: var(--white);
}

.checktb tbody tr.active td {
	border-bottom: 1px solid var(--white);
}

.checktb tbody tr td {
	cursor: pointer;
	padding: 10px 5px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	transition: all 0.3s;
}

.checktb tbody tr td:first-child {
	border-left: 1px solid transparent;
}

.checktb tbody tr td:last-child {
	border-right: 1px solid transparent;
}

.checktb tbody tr:hover td {
	border-top: 1px solid var(--nar);
	border-bottom: 1px solid var(--nar);
}

.checktb tbody tr:hover td:first-child,
.checktb tbody tr.active td:first-child {
	border-left: 1px solid var(--nar);
}

.checktb tbody tr:hover td:last-child,
.checktb tbody tr.active td:last-child {
	border-right: 1px solid var(--nar);
}

.overcont {
	max-height: 80vh;
	overflow: auto;
}

#api-modal .results {
	max-height: 300px;
	overflow: auto;
}

.selmin .select2-container--default .select2-selection--single {
	height: 31px;
	padding: 5px 10px;
}

.selmin .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 26px;
}

#all_load {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 10000000;
	;
	left: 0;
	top: 0;
	background: url(../img/background.jpg) no-repeat center bottom;
	background-size: 100% auto;
	background-color: white;
}

#all_load .centrado {
	width: 20vw;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#all_load .logo {
	margin-bottom: 20px;
}

#all_load .loader {
	position: relative;
}

#all_load .loader .spinner {
	width: 80px;
	height: 80px;
}

#all_load .loader .texto {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 14px;
	color: var(--nar);
	font-weight: bold;
}

.offerfilter {
	position: relative;
}

.offerfilter label {
	position: absolute;
}

.sun-border {
	border: 1px solid var(--nar);
}

.sun-border-left {
	border-left: 1px solid var(--nar);
}

.sun-border-right {
	border-right: 1px solid var(--nar);
}

.sun-border-bottom {
	border-bottom: 1px solid var(--nar);
}

/*
.select2-results__option {
	text-align: center;
}
	*/

.group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}

.group>input:not(:last-child),
.group>input:not(:first-child) {
	text-align: right;
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	margin-bottom: 0;
	padding-right: 0;
}

.group>input[type="date"]:not(:last-child) {
	text-align: center;
}

.group>input:not(:first-child) {
	border-left: none !important;
}

.group>input:not(:last-child) {
	border-right: none !important;
}

.group>input:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.group>input:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.group .prepend,
.group .append {
	display: -ms-flexbox;
	display: flex;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	white-space: nowrap;
	background-color: #FFF;
	border: 1px solid var(--griss);
}

.group .prepend {
	border-right: none !important;
	margin-right: -1px;
	padding: 11px 1px 9px 12px;
	color: var(--grey);
}

.group .append {
	border-left: none !important;
	margin-left: -1px;
	padding: 11px 12px 9px 5px;
	color: var(--black);
}

.group:has(> input:disabled)>.prepend,
.group:has(> input:disabled)>input,
.group:has(> input:disabled)>input::placeholder,
.group:has(> input:disabled)>.append {
	background-color: var(--gris);
	color: var(--gris);
}

.group:has(> input:focus)>.prepend,
.group:has(> input:focus)>input,
.group:has(> input:focus)>.append {
	border-color: var(--nar);
}

.justify-content-center {
	justify-content: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

.obstable .item td:first-child {
	padding: 7px 5px;
	text-align: center;
}

.obstable .item.bselected td:first-child {
	color: white;
	background-color: var(--nar);
}

.obstable .item.bactive td:first-child {
	color: white;
	background-color: var(--green);
}

.uppercase {
	text-transform: uppercase;
}

.number-input-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid #ccc;
	overflow: hidden;
	background-color: var(--white);
}

.number-input-wrapper button {
	background-color: var(--nar);
	color: #FFF;
	border: none;
	width: 55px;
	height: 39px;
	font-size: 18px;
	cursor: pointer;
	user-select: none;
}

.number-input-wrapper input[type="number"] {
	width: calc(100% - 32px);
	height: 40px;
	text-align: center;
	border: none !important;
	outline: none;

	-webkit-appearance: none;
	-moz-appearance: textfield;
	appearance: textfield;
}

.number-input-wrapper input[type="number"]::-webkit-inner-spin-button,
.number-input-wrapper input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form_nar .number-input-wrapper {
	border-color: var(--griss);
}

.form_nar .number-input-wrapper:has(> input:focus) {
	border-color: var(--nar);
}

#clientlogo {
	display: none;
	width: 100%;
	height: 77px;
	position: relative;
	border: 1px solid var(--griss);
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 10px;
}

#clientlogo img {
	max-width: 100%;
	max-height: 77px;
}

#clientlogo button {
	position: absolute;
	top: 5px;
	right: 5px;
}

.checkradesp {
	margin: 0 -10px;
	overflow: hidden;
}

.checkradesp .item {
	cursor: pointer;
	display: inline-block;
	margin: 10px;
	width: calc(33.33% - 22px);
	vertical-align: top;
	min-height: 100px;
	background-color: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.5s;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
}

.checkradesp .item:hover {
	border-color: var(--nar);
}

.checkradesp .item.checked {
	border-color: var(--nar);
	background-color: var(--nar);
	color: var(--white);
}

.checkradesp .item .content {
	padding: 10px;
}

.checkradesp .item .tt {
	font-size: 16px;
	margin-bottom: 10px;
}

.checkradesp .item .ds {
	font-size: 12px;
}


#prresults {
	display: block;

}

#prresults #quotes {}

#prresults #quotes .title {
	height: 33px;
}

#prresults #quotes .content {}

#prresults #quotes .content .pritem {
	height: 50px;
	margin-bottom: 10px;
	padding: 10px 0;
}

#prresults #quotes .content .pritem.active {
	background: var(--op_gris);
}


.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: var(--nar);
	color: white;
	border-color: white;
	padding: 10px 15px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	margin-right: 5px;
	color: white;
}

.select2-container--default .select2-selection--multiple {
	border: 1px solid var(--griss);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid var(--nar);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	width: inherit;
}

.select2-container .select2-selection--multiple .select2-search--inline {
	float: none;
}

.spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 3px solid;
	border-color: var(--nar) #0000;
	animation: spinner-sun 1s infinite;
}

@keyframes spinner-sun {
	to {
		transform: rotate(.5turn);
	}
}

:root {
	--swal-bg: #ffffff;
	--swal-txt: #545454;
}

/* Cuando el body TIENE dark-mode (Oscuro) */
body.dark {
	--swal-bg: #19191a;
	/* Color similar al oxide-dark de TinyMCE 8 */
	--swal-txt: #e1e1e1;
}

/* Aplicamos las variables a SweetAlert2 */
.swal2-popup {
	background-color: var(--swal-bg) !important;
	color: var(--swal-txt) !important;
}

.swal2-title,
.swal2-content,
.swal2-html-container {
	color: var(--swal-txt) !important;
}

.swal2-popup .spinner {
	width: 84px;
	height: 84px;
}

.swal2-popup input[type="text"] {
	width: auto;
}

.swal2-popup select {
	width: auto;
}

#logocomp .imagen {
	display: inline-block;
	background-color: #FFF;
}

#logocomp .imagen img {
	max-height: 100px;
}

.psub {
	padding: 10px;
	border: 1px solid var(--griss);
	margin-bottom: 10px;
	border-radius: 5px;
}

.psub h6 {
	font-size: 12px;
	margin-bottom: 10px;
	color: var(--grey);
	text-align: left;
}

.psub .d-inline {
	padding: 0 5px;
}

#underlyings {
	padding: 10px 0;
	text-align: left;
}

#underlyings .item {
	display: inline-block;
	vertical-align: top;
	width: calc(33% - 11px);
	margin: 0 5px 10px;
	padding: 20px 10px 10px;
	border: 1px solid var(--nar);
	transition: all 0.5s;
	box-shadow: 15px 15px 10px -5px rgba(0, 0, 0, 0.05);
	position: relative;
}

#underlyings .item .remove {
	position: absolute;
	top: 0px;
	right: 5px;
}

#underlyings .item .remove {
	color: var(--grey);
}

#underlyings .item .remove:hover {
	color: var(--red)
}

#underlyings .item .title {
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
	color: black;
	overflow: hidden;
}

#underlyings .item .title small {
	color: var(--grey);
}

#preview #items {
	width: 500px;
}

#preview #items .item {
	width: calc(100% - 60px);
	display: none;
	min-height: auto;
}

#preview #details {
	width: calc(100% - 520px);
	margin-left: 20px;
	margin-top: 50px;
	display: none;
}