:root{
    --wb-main: #422152;
    --wb-hover: #702893;
    --wb-border: #d5d5d5;
    --wb-input: #f7f7f7;
    --wb-input-text: #333333;
    --wb-body-bg: #dbd1bf;
    --wb-header-bg: #f8f4ec;
    --wb-header-bar-bg: #ffffff;
    --wb-footer-bg: #f8f4ec;
    --wb-box-bg: #f9f9f9;
    --wb-text: #535353;
    --wb-link-text: var(--wb-main);
    --wb-link-text-hover: #000000;
    --wb-button-bg: var(--wb-main);
    --wb-button-text: #ffffff;
    --wb-button-border: var(--wb-main);
    --wb-button-hover-bg: var(--wb-hover);
    --wb-button-hover-text: #ffffff;
    --wb-button-hover-border: var(--wb-hover);
    --wb-button-active-bg: var(--wb-hover);
    --wb-button-active-text: #ffffff;
    --wb-button-active-border: var(--wb-hover);
    --wb-button-disabled-bg: #f2f2f2;
    --wb-button-disabled-text: #535353;
    --wb-button-disabled-border: #535353;
    --wb-off-canvas-bg: #ffffff;
    --wb-off-canvas-text: #333333;
    --wb-off-canvas-link-hover-bg: #333333;
    --wb-off-canvas-link-hover-color: #ffffff;
    --wb-checkbox-border: var(--wb-border);
    --wb-checkbox-bg: var(--wb-input);
    --wb-checkbox-text: #333333;
    --wb-checkbox-checked-bg: #333333;
    --wb-checkbox-checked-border: #333333;
    --wb-checkbox-disabled-bg: #e0e0e0;
    --wb-checkbox-disabled-border: #e0e0e0;
    --wb-checkbox-disabled-text: #333333;
    --wb-checkbox-disabled-checked-bg: #e0e0e0;
    --wb-checkbox-disabled-checked-border: #e0e0e0;
    --wb-light-feedback: #5c5c5c;
    --wb-success-feedback: #16701a;
    --wb-danger-feedback: #ab0f1f;
    --wb-warning-feedback: #af741b;
    --wb-info-feedback: #1d64cc;
    --wb-secondary-feedback: #2c2c2c;
}
html,
body {
    width:100%;
    max-width: 100%;
    max-height:calc(var(--wb-vh, 1vh) * 100);
    height:calc(var(--wb-vh, 1vh) * 100);
    padding: 0;
    margin: 0;
    background-color: var(--wb-bg-1);
    overflow: hidden;
    color: var(--wb-text);
    font-size: 14px;
}
a.content-link{
    color: var(--wb-link-text);
    text-decoration: none;
}
a.content-link:hover, a.content-link:focus, a.content-link:active{
    color: var(--wb-link-text-hover);
    text-decoration: underline;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.wb-no-select{
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*====================
    wb-buttons
====================*/
.btn-primary {
    --bs-btn-color: var(--wb-button-text);
    --bs-btn-bg: var(--wb-button-bg);
    --bs-btn-border-color: var(--wb-button-border);
    --bs-btn-hover-color: var(--wb-button-hover-text);
    --bs-btn-hover-bg: var(--wb-button-hover-bg);
    --bs-btn-hover-border-color: var(--wb-button-hover-border);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--wb-button-active-text);
    --bs-btn-active-bg: var(--wb-button-active-bg);
    --bs-btn-active-border-color: var(--wb-button-active-border);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--wb-button-disabled-text);
    --bs-btn-disabled-bg: var(--wb-button-disabled-bg);
    --bs-btn-disabled-border-color: var(--wb-button-disabled-border);
}
.btn-outline-primary {
    --bs-btn-color: var(--wb-button-bg);
    --bs-btn-border-color: var(--wb-button-bg);
    --bs-btn-hover-color: var(--wb-button-hover-text);
    --bs-btn-hover-bg: var(--wb-button-bg);
    --bs-btn-hover-border-color: var(--wb-button-bg);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--wb-button-hover-text);
    --bs-btn-active-bg: var(--wb-button-bg);
    --bs-btn-active-border-color: var(--wb-button-bg);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--wb-button-bg);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--wb-button-bg);
    --bs-gradient: none;
}
/*====================
    wb-container
====================*/
.wb-container{
    width:100%;
    position: fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    overflow: hidden;
}
/*====================
    wb-content
====================*/
.wb-content{
    position: absolute;
    top:120px;
    left:0;
    right:0;
    bottom:0;
    width:100%;
}
.wb-content .wb-content-center-row {
    min-height: calc(var(--wb-vh, 1vh) * 100 - 180px);
    padding: 40px 0;
}
.wb-content .wb-content-inner{
    padding: 0 0 0 0;
    width: 100%;
    min-height: calc(var(--wb-vh, 1vh) * 100 - 180px);
}
/*====================
    wb-header
====================*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--wb-header-bg);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}
header .wb-header-top{
    height: 80px;
}
header .wb-header-top .wb-header-top-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    gap: 40px;
}
header .wb-header-bottom-svg{
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    height: 20px;
    z-index: 100;
}
header .wb-header-bottom-svg svg{
    vertical-align: top;
}
header .wb-header-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width:auto;
}
header .wb-header-logo img{
    max-width: 100%;
    width: 60px;
    height: auto;
}
header .wb-header-menu{
    flex: 1;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .wb-header-menu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}
header .wb-header-menu ul li{

}
header .wb-header-menu ul li a{
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--wb-text);
    font-size: 20px;
    font-weight: 500;
}
header .wb-header-menu ul li a .wb-line{
    height: 2px;
    width: 100%;
    background-color: transparent;
    display: block;
    margin-top: 5px;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
header .wb-header-menu ul li a.active .wb-line,header .wb-header-menu ul li a:hover .wb-line,header .wb-header-menu ul li a:focus .wb-line,header .wb-header-menu ul li a:active .wb-line{
    background-color: var(--wb-text);
}
.wb-header-menu-btn{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--wb-text);
    font-size: 36px;
    font-weight: 500;
}
.wb-header-menu-btn:hover, .wb-header-menu-btn:focus, .wb-header-menu-btn:active{
    color: var(--wb-hover);
}
.wb-header-bar{
    padding: 10px 0;
    background-color: var(--wb-header-bar-bg);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    display: block;
}
.wb-header-bar a{
    display: inline-block;
    text-decoration: none;
    color: var(--wb-text);
    font-size: 14px;
    font-weight: 500;
}
.wb-header-bar a:hover, .wb-header-bar a:focus, .wb-header-bar a:active{
    color: var(--wb-hover);
}
.wb-header-bar .wb-right a{
    padding-left:15px;
}
.wb-header-bar .wb-left .flag-icon{
    height:28px;
}
@media(max-width: 800px){
    header .wb-header-menu nav{
        display: none;
    }
    header .wb-header-menu .wb-header-menu-btn{
        display: flex;
    }
}
