:root {
    touch-action: pan-x pan-y;
}

*, ::after, ::before {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #fafafa !important;
}

#page-loader {
    z-index: 999999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-loader-background {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    background-color: black;
}

.page-container {
    width: 100%;
    height: 100%;
    display: flex;
    /*background: #FAFAFA;*/
    background: rgba(255, 205, 0, 0.03);
    flex-direction: column;
}

.page-header-container {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
}

.page-header-container .page-header-section {
    flex: 1;
    display: flex;
}

.page-header-container .page-header-section.back-btn-container {
    justify-content: start;
    align-items: center;
}

.page-header-container .page-header-section.back-btn-container > i {
    font-weight: bold;
    cursor: pointer;
}

.page-header-container .page-header-section.logo-container {
    justify-content: left;
}

.page-header-container .page-header-section.language-container {
    justify-content: end;
    align-items: center;
}

.page-header-container .page-header-section.language-container .dropdown-toggle {
    font-weight: bold;
}

.page-header-container .page-header-section.language-container .dropdown-item {
    cursor: pointer;
}

.page-header-container .page-header-logo {
    max-width: 110px;
    background: #FFCD00;
    padding: 14px;
}

.dropdown-menu li:hover > .dropdown-menu {
    display: block;
    top: 0;
    right: 100%;
    left: auto;
    margin-top: -1px;
}
