html {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

body {
    -webkit-background-size: cover;
    background-image: var(--main-bg-image-default-screen) !important;
    background-size: cover;
    overflow-x: hidden !important;
    overflow-y: hidden !important;


}

.loading {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.loading .loader_div {
    position: fixed;
    display: block;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.loading .loader_div svg {
    width: 300px;
    height: 300px;
}

.toast-title {
    font-size: 2em;
}

.toast-message {
    font-size: 1.8em;
}

.swal2-container.swal2-center > .swal2-popup {
    font-size: 1.4em;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.containerInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-wrap: nowrap;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.headerContainer {
    display: flex;
    min-width: 100%;
    height: 15vh;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--main-color-tertiary);
    padding: 0.5vh 2vh;
}

.headerLeftColumn {

}

.headerRightColumn {
    font-size: 2.4vw;
    font-weight: bold;
    color: var(--main-color-secondary) !important;
}

.wrapContent {
    min-width: 100%;
    height: 79vh;
    display: flex;
    flex-direction: row;
    padding: 1vh 1vw;
    align-items: center;
    justify-content: center;
}

.PageFooter {
    color: #aaa;
    min-width: 100%;
    height: 6vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vh 2vh;
    border-top: 0.5vh solid var(--main-color-secondary) !important;
    background-color: var(--main-color-primary) !important;
}

.formContainer {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inputWrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    min-width: 100%;
}

.inputBigIO {
    border-radius: 9999px;
    border: 5px solid var(--main-color-secondary);
    color: var(--main-color-primary);
    font-weight: bold;
    width: 70%;
    text-align: center;
    font-size: 5vh;
    padding: 2vh 3vw;
}

.actionKeyBoardContainer {
    margin-top: 2vh;
    padding-right: 10vw;
    padding-left: 10vw;
}

.keyboardContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.keyboardContentLine {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 100%;
    margin-bottom: 0.5vh;

}

.keyboardTouchPoint {
    padding-left: 0.25vw;
    padding-right: 0.25vw;
    width: 10%;
    height: 10vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.keyboardTouch {
    cursor: pointer;
    display: flex;
    background: var(--main-color-tertiary);
    border-radius: 2vh !important;
    min-height: 100% !important;
    min-width: 100% !important;
    justify-content: center;
    align-items: center;
    font-size: 4vh;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.actionButtons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.actionButtons button {
    text-align: center;
    width: 15vw;
    padding: 2.5vh 2vw !important;
    font-size: 3vh;
    margin: 2vh 5vw;
    box-shadow: 1px 3px 10px #000;
    border: none !important;
    border-radius: 9999px;
    font-weight: bold;
}

.actionButtons button.btn-to-primary {
    background-color: var(--main-color-primary) !important;
    color: var(--main-color-tertiary) !important;
}

.actionButtons button.btn-to-cancel {
    background-color: var(--main-color-secondary);
    border-color: #a22700;
    color: var(--main-color-tertiary);
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}