/**
 * @author Alexis Bogado <alexis.bogado@s3w.es>
 */

 .page {
    display: none;
}

.page.show {
    display: block;
}

.btn-orange {
    background-color: #f7931e;
    padding: 10px 55px;
    border-radius: 2em;
    color: #1d3244;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    text-align: center;
    line-height: 1;
}

.btn-orange.btn-small {
    width: fit-content;
    padding: 10px 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-orange:focus {
    box-shadow: none;
}

.btn-orange.btn-programa {
    background: url(../images/bg-programa.svg) no-repeat, #f7931e;
    background-size: cover;
    background-position: center;
}

.btn-orange.btn-mesas {
    background: url(../images/bg-mesas.svg) no-repeat, #f7931e;
    background-size: cover;
    background-position: center;
}

.btn-orange.active, .btn-orange.active:hover, .set-page.active, .set-page.active:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, .6);
    opacity: 1;
}

.btn-orange.disabled, .btn-orange.disabled:hover {
    cursor: not-allowed;
    opacity: .7;
}

.btn-orange:hover, .set-page:hover {
    opacity: .8;
}

.btn-orange::before, .btn-orange::after {
    position: absolute;
}

.btn-orange.btn-programa::before {
    content: url(../images/icon-programa.svg);
    width: 15px;
    margin-left: -25px;
    top: 5px;
}

.btn-orange.btn-mesas::before {
    content: url(../images/icon-mesas.svg);
    width: 15px;
    margin-left: -25px;
    top: 9px;
}

.btn-orange.btn-download::after {
    content: url(https://cloud.s3w.es/seimc/pdf.svg);
    width: 20px;
    margin-left: 10px;
    top: 8px;
}

.btn-orange.btn-download {
    padding: 10px 50px 10px 20px;
}

.orange-title {
    font-weight: bold;
    color: #1d3244 !important;
    position: relative;
    padding-left: 50px;
    padding-right: 10px;
    display: inline-block !important;
    margin-bottom: 20px;
}

.orange-title::after {
    content: ' ';
    background-color: #f4a351;
    width: 100%;
    height: 12px;
    display: block;
    border-radius: 2em;
    position: absolute;
    top: 16px;
    left: 0;
    z-index: -1;
}

.content {
    padding-left: 50px;
}

.text-dark-blue {
    color: #1d3244 !important;
}

.text-orange {
    color: #f7931e !important;
}

.text-teal {
    color: #0b858e !important;
}

.bg-dark-blue {
    background-color: #1e3144 !important;
}

.bg-light-orange {
    background-color: #f9cb96 !important;
}

.box-rounded {
    border-radius: 3em;
}

.box-mesa {
    background-color: #fff !important;
    border-radius: 20px 20px 10px 3em;
}

.box-mesa-content {
    max-height: 0;
    transition: all 0.15s ease-out;
    visibility: hidden;
    opacity: 0;
}

.box-mesa.show {
    background-color: #f9cb96 !important;
}

.box-mesa.show .box-mesa-content {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    transition: all 0.25s ease-in;
}

.rotate-180 {
    transform: rotate(180deg);
}

#icon-arrow {
    transition: all 0.2s ease-in;
}

.box-mesa p {
    line-height: 1.3;
    font-size: 14px;
}

.video-area {
	padding: 56.25% 0 0 0;
	position: relative;
}

.video-area iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

footer::before {
    content: ' ';
    display: block;
    background: url(../images/footer.png);
    width: 100%;
    height: 370px;
    background-repeat: no-repeat;
    background-size: cover;
}

.mesa-accordion:not(.btn-orange):hover {
    background-color: rgb(30, 49, 68, .9) !important
}

/* COL-SM */
@media (min-width: 768px) {
	.source-area {
		padding: 38.25% 0 0 0;
	}

	.source-area.no-chat {
		padding: 56.25% 0 0 0 !important;
	}
}

/* COL-MD */
@media (min-width: 992px) {
	.source-area {
		padding: 38.25% 0 0 0;
	}

	.source-area.no-chat {
		padding: 56.25% 0 0 0 !important;
	}
}