@charset "UTF-8";
@font-face {
    font-family: Corporate S;
    src: url(../fonts/corporates_regular.otf);
}

@font-face {
    font-family: Corporate S;
    src: url(../fonts/corporates_bold.otf);
    font-weight: bold;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: Corporate S;
    font-size: 16px;
    background-color: #efefef;
    color: #fff;
}

a:hover,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

#marzipano-controls,
#autorotateToggle,
#fullscreenToggle,
#sceneListTToggle {
    display: none;
}

#pano {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#titleBar {
    position: absolute;
    top: 80px;
    left: 0;
    right: 50px;
    height: 60px;
}

.mobile #titleBar {
    height: 50px;
    right: 50px;
}

body.fullscreen-enabled #titleBar {
    right: 80px;
}

body.fullscreen-enabled.mobile #titleBar {
    right: 100px;
}

body.multiple-scenes.mobile #titleBar {
    left: 50px;
}

#titleBar .sceneName {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    line-height: 50px;
    padding: 5px 50px 5px 30px;
    background-color: rgba(0, 78, 145, 0.75);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    font-family: Corporate S;
    font-size: 17px;
    font-weight: bold;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.mobile #titleBar .sceneName {
    line-height: 40px;
}

#fullscreenToggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: rgba(0, 78, 145, 0.75);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.mobile #fullscreenToggle {
    width: 50px;
    height: 50px;
}

body.fullscreen-enabled #fullscreenToggle {
    display: block;
}

#fullscreenToggle .icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
}

.mobile #fullscreenToggle .icon {
    top: 10px;
    right: 10px;
}

#fullscreenToggle .icon.on {
    display: none;
}

#fullscreenToggle .icon.off {
    display: block;
}

#fullscreenToggle.enabled .icon.on {
    display: block;
}

#fullscreenToggle.enabled .icon.off {
    display: none;
}


/* Link hotspot */

.link-hotspot {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    opacity: 0.9;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.no-touch .link-hotspot:hover {
    opacity: 1;
}

.mobile .link-hotspot {
    width: 70px;
    height: 70px;
}

.link-hotspot-icon {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.link-hotspot-tooltip {
    position: absolute;
    left: 100%;
    top: 14px;
    /* ( 60 - (16 + 2*8) ) / 2 */
    margin-left: 3px;
    font-size: 16px;
    max-width: 300px;
    padding: 8px 10px;
    border-radius: 5px;
    background-color: rgb(58, 68, 84);
    background-color: rgba(58, 68, 84, 0.8);
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
    -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, opacity 0.3s;
    transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s, opacity 0.3s;
}

.mobile .link-hotspot {
    top: 19px;
    /* ( 70 - (16 + 2*8) ) / 2 */
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip {
    opacity: 1;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}


/* Prevent tooltip from triggering */

.link-hotspot-tooltip {
    pointer-events: none;
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip {
    pointer-events: all;
}


/* Fallback mode without pointer-events (IE8-10) */

.tooltip-fallback .link-hotspot-tooltip {
    display: none;
}

.no-touch .tooltip-fallback .link-hotspot:hover .link-hotspot-tooltip {
    display: block;
}

.info-hotspot {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background: #fff;
    width: 260px;
    height: 50px;
    margin-top: -25px;
    margin-left: -130px;
    border: 2px solid #fff;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.info-hotspot.focus-hotspot {
    z-index: 100;
}

.info-hotspot .info-hotspot-title {
    width: 200px;
    background: #004e91;
    font-family: Corporate S;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    float: left;
}

.info-hotspot .persistent-info-hotspot-button-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    width: 60px;
    height: 50px;
    float: left;
}

.info-hotspot .info-hotspot-button-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: none;
    min-width: 60px;
    max-width: 180px;
    height: 50px;
    background: #fff;
    float: left;
}

.info-hotspot .info-hotspot-button-wrapper>div {
    border-left: 1px solid #bfbfbf;
}

.info-hotspot .info-hotspot-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 50px;
    background: #fff;
    width: 570px;
    height: auto;
    left: -2px;
    padding: 25px 25px 25px 25px;
    border: 2px solid #fff;
    color: #454545;
    font-size: 19px;
    line-height: 26px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.info-hotspot .info-hotspot-text h2 {
    color: #004e91;
    font-weight: normal;
    font-size: 24px;
}

.info-hotspot .inner-text-bold {
    font-weight: bold;
}

.info-hotspot .inner-text-list {
    font-style: normal;
    text-indent: -24px;
    margin-left: 24px;
}

.info-hotspot .inner-text-list a {
    color: #004e91;
}

.info-hotspot .inner-text-list li:before {
    content: "•";
    margin-right: 10px;
    color: #004e91;
}

.info-hotspot .inner-highlight {
    color: #004e91;
}

.info-hotspot-info-icon {
    display: block;
    width: 60px;
    height: 50px;
    float: left;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 32px !important;
    background: url("../svg/info-info-icon.svg");
}

.info-hotspot-info-icon:hover,
.info-hotspot-info-icon.active:hover {
    background: url("../svg/info-info-icon_h.svg");
}

.info-hotspot-info-icon.active {
    background: url("../svg/info-info-icon.svg");
}

.info-hotspot-info-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.info-hotspot-image-icon {
    display: none;
    width: 60px;
    height: 50px;
    float: left;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 38px !important;
    background: url("../svg/info-image-icon.svg");
}

.info-hotspot-image-icon:hover,
.info-hotspot-image-icon.active:hover {
    background: url("../svg/info-image-icon_h.svg");
}

.info-hotspot-image-icon.active {
    background: url("../svg/info-image-icon.svg");
}

.info-hotspot-image-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.info-hotspot-video-icon {
    display: none;
    width: 60px;
    height: 50px;
    float: left;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 30px !important;
    background: url("../svg/info-video-icon.svg");
}

.info-hotspot-video-icon:hover,
.info-hotspot-video-icon.active:hover {
    background: url("../svg/info-video-icon_h.svg");
}

.info-hotspot-video-icon.active {
    background: url("../svg/info-video-icon.svg");
}

.info-hotspot-video-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.info-hotspot-contact-icon {
    display: none;
    width: 60px;
    height: 50px;
    float: left;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 30px !important;
    background: url("../svg/info-contact-icon.svg");
}

.info-hotspot-contact-icon:hover,
.info-hotspot-contact-icon.active:hover {
    background: url("../svg/info-contact-icon_h.svg");
}

.info-hotspot-contact-icon.active {
    background: url("../svg/info-contact-icon.svg");
}

.info-hotspot-contact-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.info-hotspot.no-title {
    width: 50px;
    margin-left: -30px;
}

.info-hotspot.no-title .persistent-info-hotspot-button-wrapper {
    width: 50px;
}

.info-hotspot.no-title .info-hotspot-button-wrapper {
    width: 100px;
}

.info-hotspot.no-title .info-hotspot-info-icon,
.info-hotspot.no-title .info-hotspot-image-icon,
.info-hotspot.no-title .info-hotspot-video-icon,
.info-hotspot.no-title .info-hotspot-contact-icon {
    width: 50px;
}

.hotspot-text-link,
.hotspot-text-link:hover {
    display: block;
    color: #004e91 !important;
    margin-top: 30px;
    font-size: 15px;
    line-height: 20px;
}

.hotspot-text-link-arrow {
    position: absolute;
    right: 20px;
    font-size: 21px;
}

.desktop .info-hotspot-modal {
    display: none;
}

.info-hotspot-modal {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 11000 !important;
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 1.2em;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s, visibility 0s 0.7s;
    transition: opacity 0.2s ease-in-out 0.5s, visibility 0s 0.7s;
}

.info-hotspot-modal.visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0s 0s;
    transition: opacity 0.2s ease-in-out, visibility 0s 0s;
}

.info-hotspot-modal .info-hotspot-header {
    position: absolute;
    top: 60px;
    left: 10px;
    right: 10px;
    width: auto;
    height: 50px;
    background-color: #677383;
    background-color: rgba(103, 115, 131, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out 0.2s;
    transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal.visible .info-hotspot-header {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out 0.2s;
    transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal .info-hotspot-icon-wrapper {
    width: 50px;
    height: 50px;
}

.info-hotspot-modal .info-hotspot-icon {
    width: 90%;
    height: 90%;
    margin: 5%;
}

.info-hotspot-modal .info-hotspot-title-wrapper {
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    width: auto;
    height: 50px;
    padding: 0 10px;
}

.info-hotspot-modal .info-hotspot-title-wrapper:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.info-hotspot-modal .info-hotspot-title {
    display: inline-block;
    vertical-align: middle;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.info-hotspot-modal .info-hotspot-close-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #4e5868;
    background-color: rgba(78, 88, 104, 0.8);
    cursor: pointer;
}

.info-hotspot-modal .info-hotspot-close-icon {
    width: 70%;
    height: 70%;
    margin: 15%;
}

.info-hotspot-modal .info-hotspot-text {
    position: absolute;
    top: 110px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
    background-color: #3a4454;
    background-color: rgba(58, 68, 84, 0.8);
    overflow-y: auto;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.info-hotspot-modal.visible .info-hotspot-text {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out 0.4s;
    transition: opacity 0.3s ease-in-out 0.4s;
}

#transition-overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
}

#main-menu {
    position: absolute;
    bottom: 50px;
    width: 60px;
    height: auto;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

#main-menu .main-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 60px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 30px !important;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    border-bottom: 1px solid #e6e6e6;
}

#main-menu .main-btn:last-of-type {
    border-bottom: none;
}

#main-menu .main-btn-arrow {
    display: none;
    width: 0px;
    height: 0px;
    margin-left: 60px;
    margin-top: 25px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #004e91;
}

#language-btn {
    background: url("../svg/language_icon.svg") white;
}

#language-btn:hover,
#language-btn.current {
    background: url("../svg/language_icon_h.svg") #004e91;
}

#contact-btn {
    background: url("../svg/contact_icon.svg") white;
}

#contact-btn:hover,
#contact-btn.current {
    background: url("../svg/contact_icon_h.svg") #004e91;
}

#material-btn {
    background: url("../svg/material_icon.svg") white;
}

#material-btn:hover,
#material-btn.current {
    background: url("../svg/material_icon_h.svg") #004e91;
}

#product-btn {
    background: url("../svg/product_icon.svg") white;
}

#product-btn:hover,
#product-btn.current {
    background: url("../svg/product_icon_h.svg") #004e91;
}

#room-btn {
    background: url("../svg/room_icon.svg") white;
}

#room-btn:hover,
#room-btn.current {
    background: url("../svg/room_icon_h.svg") #004e91;
}

.main-container {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 80px;
    width: 300px;
    background: #fff;
    border-bottom: 4px solid #004e91;
    padding: 34px 30px;
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
}

.main-container .main-item {
    display: block;
    border-top: 2px solid #e6e6e6;
    color: #707070;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 0 10px;
    text-transform: capitalize;
}

.main-container .main-item:last-of-type,
.main-container .main-item.last-item {
    border-bottom: 2px solid #e6e6e6;
}

.main-container#language-menu {
    bottom: 184px;
}

.moped {
    display: none;
}

#floating-room-menu {
    display: none;
    left: -150px;
}

.main-item:hover {
    background: #f0f0f0;
    color: #707070;
}

.chat-btn {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 50px;
    bottom: 50px;
    background: rgba(0, 78, 145, 0.75);
    background-image: url("../svg/contact_icon_h.svg");
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 46px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.chat-btn:hover {
    background-color: white;
    background-image: url("../svg/contact_icon.svg");
}

.umm-16vyxr0 {
    border-radius: 0 !important;
}

.frame-k3gsuf-Root .e15lgpb30 {
    border-radius: 0 !important;
}

#start-tour-btn {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    right: 50px;
    bottom: 50px;
    height: 46px;
    padding: 0 30px;
    background: #004e91;
    text-align: center;
    line-height: 46px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 2px solid white;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

#start-tour-btn:hover {
    background: white;
    border: 2px solid #004e91;
    color: #004e91;
}

#start-tour-btn>p,
.chat-btn>p {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    color: white;
}

#tour-arrow-right {
    width: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 15px;
    margin-left: 2px;
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
}

.modal-content {
    color: #454545;
    border-radius: 0;
}

.products-box .fancybox-bg {
    display: block;
    background: #fff;
}

.products-box .fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.75);
}

.products-box .fancybox-inner {
    right: 0;
    bottom: 95px;
}

.products-box .fancybox-thumbs__list a {
    -webkit-transition: 50ms;
    transition: 50ms;
}

.products-box .fancybox-thumbs__list a:hover {
    -webkit-filter: unset;
    filter: unset;
}

.products-box .fancybox-thumbs__list a:before {
    border: 5px solid rgba(0, 78, 145, 0.95);
}

.products-box .fancybox-caption {
    background: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    padding-bottom: 65px;
    height: 40px;
    padding: 20px 0px 10px 0px;
    color: #004e91;
}

.products-box .fancybox-infobar {
    display: none;
    color: #004e91;
    mix-blend-mode: unset;
}

.products-box .fancybox-content {
    border: 25px solid #fff;
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
}

.products-box .fancybox-button {
    background: rgba(0, 78, 145, 0.75);
    color: #fff;
}

.products-box .fancybox-navigation .fancybox-button {
    background-clip: content-box;
}

.products-box .fancybox-button[disabled],
.products-box .fancybox-button[disabled]:hover {
    color: #fff;
}

.fancybox-caption__body {
    font-size: 1.4em;
}

.fancybox-progress {
    background: rgba(0, 78, 145, 0.95);
}

.fancybox-iframe,
.fancybox-video {
    background: white;
}

.menu-hotspot {
    display: block;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    background: white;
    background-image: url(../svg/room_icon.svg);
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 26px !important;
    text-align: center;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    cursor: pointer;
}

.menu-hotspot:hover,
.menu-hotspot.active {
    background: #004e91;
    background-image: url(../svg/room_icon_h.svg);
}

#product-menu {
    padding-right: 10px;
    padding-bottom: 20px;
    color: #004e91;
}

.product-menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.product-menu-header:first-of-type {
    margin-top: 0;
}

.product-menu-header i {
    font-size: 14px;
}

.product-menu-headline {
    color: #004e91;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 25px;
}

.product-menu-headline:first-of-type {
    margin-top: 0 !important;
}

.product-menu-container {
    margin-bottom: 20px;
}

.product-menu-container:last-of-type {
    margin-bottom: 0;
}

.scroll-bar-helper {
    overflow-y: auto;
    max-height: 50vh;
    padding-right: 15px;
}

.scroll-bar-helper::-webkit-scrollbar {
    width: 6px;
}

.scroll-bar-helper::-webkit-scrollbar-track {
    /*    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 10px;
    background: #f2f2f2;
}

.scroll-bar-helper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #d9d9d9;
    /*    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);*/
}

.scroll-bar-helper::-webkit-scrollbar-thumb:window-inactive {
    background: #d9d9d9;
}

@media (min-width: 992px) {
    .material-modal .modal-lg {
        max-width: 980px;
    }
}

.material-modal h4 {
    font-size: 28px;
    color: #004e91;
}

.material-modal h5 {
    font-weight: bold;
    font-size: 20px;
}

.material-modal p {
    color: #454545;
    font-size: 19px;
    line-height: 26px;
}

.modal-content {
    border: unset;
    padding: 25px;
    -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
}

.modal-content .container {
    padding: unset;
}

.modal-header {
    color: #004e91;
    border: unset;
    padding: 5px 25px 0px 15px;
}

.modal-header .close {
    opacity: unset;
    font-size: 20px;
    padding: unset;
    margin-top: 5px;
}

.modal-body {
    margin-top: 20px;
}

.modal-body img {
    margin-top: 50px;
}

.modal-footer {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    border: unset;
    font-size: 22px;
    margin-top: 14px;
}

.modal-footer a {
    color: #004e91;
}

.modal-footer .prev-arrow {
    width: 50%;
}

.modal-footer .next-arrow {
    width: 50%;
    text-align: right;
}

.confirm-room-switch-tooltip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 300px;
    height: 44px;
    color: #707070;
    background: white;
    text-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 38px;
    border-bottom: 4px solid #004e91;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.confirm-room-switch-tooltip a {
    color: #004e91;
}

.big_screen_loader {
    display: block;
    position: absolute;
    width: 1280px;
    height: 720px;
    background: #3c3c3c;
}

.lds-ellipsis {
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(2);
    transform: translateY(-50%) translateX(-50%) scale(2);
    scale: 2;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: white;
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    -webkit-animation: lds-ellipsis1 0.6s infinite;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    -webkit-animation: lds-ellipsis3 0.6s infinite;
    animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-webkit-keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
}


/*# sourceMappingURL=style.css.map */