body {
    font-family: 'Roboto-Light';
    font-size: 16px;
    min-width: 300px;
    margin: 0px;
    overflow-y: hidden;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
b {
    font-family: 'Roboto-BoldCond';
    font-weight: normal;
}
.input {
    position: relative;
}
.input > input,
.input > select,
.input > textarea {
    width: 100%;
    height: 35px;
    font-size: 16px;
    font-family: 'Roboto-Light';
    padding: 6px 12px !important;
    border: 1px solid lightgray;
    border-radius: 5px;
}
.input > input[type="radio"] {
    width: 10px;
}
.input > textarea {
    height: 70px;
    resize: none;
}
.input > input:focus,
.input > select:focus,
.input > textarea:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.input > .info {
    font-size: 13px;
    color: #8c8c8c;
}

.custom-combobox {
    position: relative;
}
.custom-combobox-toggle {
    position: absolute;
    top: 0; bottom: 0;
    margin-left: -1px; padding: 0;
    height: 35px; width: 35px;
    display: table-cell;
    color: #2b2b2b;
    background: #f6f6f6;
    border: 1px solid #d3d3d3;
    text-align: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.custom-combobox-toggle:hover{
    background: #ededed;
}
.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
    display: table-cell;
    width: 100%; height: 35px;
    border: 1px solid #d3d3d3;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

input:focus,
button:focus {
    outline: none;
}
button:hover {
    cursor: pointer;
}
::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.button-info {
    border: 0px;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    background: #cdcdcd;
    margin: 0px 10px;
}
.button-info > img {
    width: 100%;
}
.error-msg {
    color: red;
    margin: 15px auto;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}
.captcha-content {
    text-align: center;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
    margin: 0px 60px;
    vertical-align: middle;
}
#captcha {
    border: 1px solid #cdcdcd;
}
.captcha-content img {
    width: 100%;
    margin-bottom: 5px;
}
.captcha-content a {
    position: absolute;
    bottom: 11px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #cdcdcd;
    padding: 5px;
}
.captcha-content a > img {
    position: absolute;
    left: 1px;
    top: 4px;
    width: 25px;
}
.captcha-content input {
    width: 210px;
    font-family: 'Roboto-Light';
    font-size: 14px;
    height: 30px;
    padding: 5px 10px;
    border: 1px solid #cdcdcd;
}
.pos-rel {
    position: relative;
}
.pos-abs {
    position: absolute;
}
.left {
    left: 0px;
}
.right {
    right: 0px;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-justify {
    text-align: justify;
}
.t-table {
    display: inline-table !important;
    width: 100%;
    vertical-align: top;
}
.t-row {
    display: table-row;
    position: relative;
}
.t-cel {
    display: table-cell;
    /*min-height: 55px;*/
    vertical-align: top;
    padding-bottom: 8px;
}
.t-cel.label {
    padding-top: 7px;
}

.identity {
    background: #1880fb;
}
/* LOADING MODAL */

.loading-modal,
.msg-modal {
    position: fixed;
    z-index: 99999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}
.loading-bg,
.msg-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.8;
}
.loading-msg,
.msg-message {
    width: 100%;
    height: 150px;
    position: absolute;
}
.loading-cont,
.msg-cont {
    width: 95%;
    max-width: 550px;
    margin: auto;
    background: white;
    position: relative;
    border-radius: 5px;
    top: 40px;
}
.loading-title,
.msg-title {
    background: #cdcdcd;
    color: white;
    font-size: 20px;
    font-family: 'Roboto-Regular';
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.loading-text,
.msg-text {
    font-size: 16px;
    padding: 25px 30px;
    /*text-align: center;*/
}
.msg-foot {
    padding: 10px 15px;
    text-align: right;
}
.msg-foot > button {
    margin-left: 10px;
}
.loading-text .title {
    font-size: 20px;
}
.msg-title > button {
    border: 0;
    background: transparent;
    position: absolute;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
}
.msg-title img {
    width: 100%;
}
.meter {
    height: 20px;
    /* Can be anything */
    
    margin-top: 10px;
    position: relative;
    background: #555;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 5px;
    padding: 2px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.meter > span {
    display: block;
    height: 100%;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #1880fb;
    background-image: linear-gradient( center bottom, rgb(43, 194, 83) 37%, rgb(84, 240, 84) 69%);
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.meter > span:after,
.animate > span > span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient( -45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}
.animate > span:after {
    display: none;
}
@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}
.meter > span:after,
.animate > span > span {
    animation: move 2s linear infinite;
}
.help-dialog {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
	right: 0;
	z-index: 999;
}
.help-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    opacity: 0.8;
}
.help-cont {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 5% auto 0;
    text-align: center;
}
.help-img {
    width: 100%;
}
.help-close {
    position: absolute;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    padding: 0;
    right: -25px;
    top: -25px;
}
.help-close > img {
    width: 100%;
}
/************************************************************/

.w-md-0,
.w-md-1,
.w-md-2,
.w-md-3,
.w-md-4,
.w-md-5,
.w-md-6,
.w-md-7,
.w-md-8,
.w-md-9,
.w-md-10,
.w-md-11,
.w-md-12,
.w-sm-0,
.w-sm-1,
.w-sm-2,
.w-sm-3,
.w-sm-4,
.w-sm-5,
.w-sm-6,
.w-sm-7,
.w-sm-8,
.w-sm-9,
.w-sm-10,
.w-sm-11,
.w-sm-12,
.w-xs-0,
.w-xs-1,
.w-xs-2,
.w-xs-3,
.w-xs-4,
.w-xs-5,
.w-xs-6,
.w-xs-7,
.w-xs-8,
.w-xs-9,
.w-xs-10,
.w-xs-11,
.w-xs-12 {
    display: inline-block;
    display: -moz-stack;
}
.has-error > input {
    border-color: red !important;
}
.dialog-error {
    position: absolute;
    top: 50px;
    right: 0;
    width: 275px;
    text-align: center;
    z-index: 5;
    display: none;
}
.icon-error {
    display: none;
    position: absolute;
    width: 30px;
    height: 30px;
    background: red;
    /*top: 7px;*/
    top: 2px; right: 7px;
    background: url('../img/iconos/exclamacion.svg');
    background-position: center;
    background-size: cover;
}
.has-error > .icon-error {
    display: block !important;
}
.msg-error {
    font-family: 'Roboto-Regular';
    color: white;
    font-size: 14px;
    background: #d37a7a;
    padding: 7px 25px 10px;
    border-radius: 5px;
}
.msg-error .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 25px;
    padding: 0px;
    /*background: url('../img/facturacion/cerrartooltip.svg') no-repeat; 
  background-size: cover;*/
}
.msg-error .close-btn > img {
    width: 31px;
    position: absolute;
    top: -5px;
    left: -5px;
}
.tip {
    width: 0px;
    height: 0px;
    position: absolute;
    background: transparent;
    border: 12px solid #d37a7a;
}
.tip-up {
    top: -23px;
    /* Same as body margin top + border */
    
    right: 3%;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}
.tip-down {
    bottom: -25px;
    left: 10px;
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
}
.tip-left {
    top: 10px;
    left: -25px;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
}
.tip-right {
    top: 10px;
    right: -25px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    width: auto;
    height: auto;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-open > b,
.modal-open > header,
.modal-open > section {
	filter: blur(5px);
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px auto;
}

#openModal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#openModal .modal-dialog img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    object-fit: cover;
}


.accordion-content-main {
    display: grid;
    grid-template-columns: 1fr 250px;
    justify-self: center;
    grid-template-areas: 'form form'
                        'privacy privacy'
                        'button button';
}

.privacy-policy-form {
    grid-area: form;
}

.next-button-area {
    grid-area: button;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.modal-footer {
    padding: 15px 0px;
    margin: 0px 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}


.ayuda-fixed {
    position: fixed;
    z-index: 10;
    bottom: 0; right: 25px;
    max-width: calc(100% - 50px);
}

.ayuda-fixed > button {
    height: 35px;
    color: white;
    background: black;
    border-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    width: auto;
    padding: 5px 20px;
    font-size: 14px;
}

.ayuda-fixed > button > b {
    font-family: 'Roboto-Regular';
    font-weight: 600;
}

.aviso-privacidad {
    grid-area: privacy;
    width: 100%;
    padding-top: 20px;
    margin: 0 10px;
}

.aviso-privacidad .title {
    text-align: center;
    font-family: 'Roboto-Regular';
    color: #295eab;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.aviso-privacidad .info {
    text-align: center;
    font-family: 'Roboto-Regular';
    font-size: 12px;
    margin: 5px;
}


.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0;
}
.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}
.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
}

.ui-menu .ui-menu-item > .ui-state-active {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: normal;
    color: #fff;
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
}
.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

::-moz-placeholder {
    font-size: 14px;
}
:-moz-placeholder {
    font-size: 14px;
}
:-ms-input-placeholder {
    font-size: 14px;
}
::-webkit-input-placeholder {
    font-size: 14px;
}

.slider-close{
	position: absolute;
	bottom: -45px;
	right: 15px;
	padding: 0;	
	z-index: 999;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	outline: none;
	transition: all 0.06s;
}
.slider-close:hover{
	cursor: pointer;
	padding: 2px;
}
.slider-close img{
	width:100%;
	height: 100%;
}
.slider-title{
	float: left;
	width: 100%;
	min-height: 50px;
	background: rgb(54,94,166);
	text-align: center;
	color: #FFF;
	position: relative;
}
.slider-title h2{
	padding: 0;
	margin: 0;
	/* margin-top: 10px; */
	line-height: 50px;
	vertical-align: middle;
	position: relative;
	display: inline-block;	
	font-weight: lighter;
}

.slider-for::before {
    content: '';
    background: #a8a8a8;
    width: 1px;
    height: 96%;
    z-index: 9999;
    position: absolute;
    transform: translateY(4%);
}

.slider-for .slick-list,
.slider-for .slick-track,
.slider-for .slick-slide,
.slider-for .slick-slide > div,
.slider-for .slick-slide > div > div
{
	height: 100%;
}
/* .slick-vertical .slick-slide{
	margin-bottom: 20px;
} */

.slider-nav{
	float:left; width:15%; height:auto;
}
.slider-nav .img-thumb-container{
	max-width: 75%;
	width: 120px;
	height: 90px;
	margin: 0 auto;
	background:rgb(8,8,8);
	position: relative;
	overflow: hidden;
	border: 1px solid rgb(7,9,8);
	border-radius: 4px;
}

.slider-nav .img-thumb-container:hover{
	cursor:pointer;
	background-color: #000000;
}

.slider-nav .img-thumb{
	max-width: 90%;
	max-height: 90%;
	margin: 0 auto;
	top: 50%;
	position: relative;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color:#fff;
}

.slider-nav .slick-current .img-thumb-container{
	border: 1px solid #a8a8a8;
}

.slider-for{
	float:left; width:85%; height:90%;
}
.slick-slider .img-full-container{
	width: 95%;
	overflow: hidden;	
	margin: 0 auto;	
	margin-top: 16px;	
	position: relative;
	height: 100%;
}

.slick-slider .img-full{
	margin: 0 auto;
	position: relative;	
	max-height: 100%;
	max-width: 100%;
	top: 50%;
	transform: translateY(-50%);
	color:#fff;
}

.lista-campos-mensaje-error {
    color: #DB2E2E;
    font-weight: bold;
    text-align: justify;

    max-width: 630px;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 1;
}

.lista-campos-mensaje-error.oculto {
    max-height: 0;
    opacity: 0;
    padding: 0 1em;
    border-width: 0;
}

#form-ticket .t-cel {
    vertical-align: middle !important;
}

#form-ticket .t-cel label {
    padding-top: 0px !important;
}

.modal-dialog.modal-fullscreen {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

#modal-ayuda-reservacion .modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.slider-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.slider-close {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.slider-container {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.slider-nav {
    overflow-y: auto;
}

.slider-for {
  overflow-y: auto;
  height: 97%;
}

/* #modal-ayuda-reservacion .slider-for::before {
    content: '';
    background: #a8a8a8;
    width: 1px;
    height: 96%;
    z-index: 9999;
    position: absolute;
    transform: translateY(4%);
} */



#modal-ayuda-reservacion .label-mensaje {
    color: #FBFBFB;
    text-align: justify;

    text-align: justify;
    font-size: 16px;
}

#modal-ayuda-reservacion .slider-item-ayuda {
    padding-left: 15px;
    padding-right: 5%;
}

/* #modal-ayuda-reservacion .slider-for::before {
    height: 85%;
    transform: translateY(4%);
} */

.img-full-container {
    text-align: center;
    margin-top: 10px;
}

.img-full {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#modal-ayuda-reservacion .slider-item-scroll {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding-right: 15px;
}

#modal-ayuda-reservacion .slider-item-scroll::-webkit-scrollbar {
    width: 8px;
}
#modal-ayuda-reservacion .slider-item-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

#modal-ayuda-reservacion .slick-slider .img-full {
  transform: none !important;
}


@media (min-width: 0px) {
    .pos-xs-rel {
        position: relative;
    }
    .pos-xs-abs {
        position: absolute;
    }
    .text-xs-center {
        text-align: center;
    }
    .text-xs-left {
        text-align: left;
    }
    .text-xs-right {
        text-align: right;
    }
    .text-xs-justify {
        text-align: justify;
    }
    .w-xs-12 {
        width: 100%;
    }
    .w-xs-11 {
        width: calc(91% - 2px);
    }
    .w-xs-10 {
        width: calc(83% - 2px);
    }
    .w-xs-9 {
        width: calc(75% - 2px);
    }
    .w-xs-8 {
        width: calc(66% - 2px);
    }
    .w-xs-7 {
        width: calc(58% - 2px);
    }
    .w-xs-6 {
        width: calc(50% - 2px);
    }
    .w-xs-5 {
        width: calc(41% - 2px);
    }
    .w-xs-4 {
        width: calc(33% - 2px);
    }
    .w-xs-3 {
        width: calc(25% - 2px);
    }
    .w-xs-2 {
        width: calc(16% - 2px);
    }
    .w-xs-1 {
        width: calc(8% - 2px);
    }
    .w-xs-0 {
        width: 0%;
    }

    .flt-xs-right { float: right; }
    .flt-xs-left { float: left; }
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .modal-sm {
        width: 300px;
    }

    .dialog-error {
        right: -29px;
    }
    .tip-up {
        right: 13%;
    }
}

@media (min-width: 800px) {
    .pos-sm-rel {
        position: relative;
    }
    .pos-sm-abs {
        position: absolute;
    }
    .text-sm-center {
        text-align: center;
    }
    .text-sm-left {
        text-align: left;
    }
    .text-sm-right {
        text-align: right;
    }
    .text-sm-justify {
        text-align: justify;
    }
    .w-sm-12 {
        width: 100%;
    }
    .w-sm-11 {
        width: calc(91% - 2px);
    }
    .w-sm-10 {
        width: calc(83% - 2px);
    }
    .w-sm-9 {
        width: calc(75% - 2px);
    }
    .w-sm-8 {
        width: calc(66% - 2px);
    }
    .w-sm-7 {
        width: calc(58% - 2px);
    }
    .w-sm-6 {
        width: calc(50% - 2px);
    }
    .w-sm-5 {
        width: calc(41% - 2px);
    }
    .w-sm-4 {
        width: calc(33% - 2px);
    }
    .w-sm-3 {
        width: calc(25% - 2px);
    }
    .w-sm-2 {
        width: calc(16% - 2px);
    }
    .w-sm-1 {
        width: calc(8% - 2px);
    }
    .w-sm-0 {
        width: 0%;
    }

    .flt-sm-right { float: right; }
    .flt-sm-left { float: left; }
}

@media (min-width: 920px) {
    .aviso-privacidad .info {
        text-align: justify;
    }

    .accordion-content-main {
        grid-template-areas: 'form privacy'
                            'button privacy';
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }

    .dialog-error {
        right: -122px;
    }
    .tip-up {
        left: 43%;
    }
}

@media (min-width: 1024px) {
    .pos-md-rel {
        position: relative;
    }
    .pos-md-abs {
        position: absolute;
    }
    .text-md-center {
        text-align: center;
    }
    .text-md-left {
        text-align: left;
    }
    .text-md-right {
        text-align: right;
    }
    .text-md-justify {
        text-align: justify;
    }
    .w-md-12 {
        width: 100%;
    }
    .w-md-11 {
        width: calc(91% - 2px);
    }
    .w-md-10 {
        width: calc(83% - 2px);
    }
    .w-md-9 {
        width: calc(75% - 2px);
    }
    .w-md-8 {
        width: calc(66% - 2px);
    }
    .w-md-7 {
        width: calc(58% - 2px);
    }
    .w-md-6 {
        width: calc(50% - 2px);
    }
    .w-md-5 {
        width: calc(41% - 2px);
    }
    .w-md-4 {
        width: calc(33% - 2px);
    }
    .w-md-3 {
        width: calc(25% - 2px);
    }
    .w-md-2 {
        width: calc(16% - 2px);
    }
    .w-md-1 {
        width: calc(8% - 2px);
    }
    .w-md-0 {
        width: 0%;
    }

    .flt-md-right { float: right; }
    .flt-md-left { float: left; }
}
