@font-face {
    font-family: "Rubik";
    src: url('../assets/fonts/Rubik-Regular.ttf');
    font-weight: normal;
}

@font-face {
    font-family: "Rubik";
    src: url('../asstes/fonts/Rubik-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: "ploni";
    src: url('../assets/fonts/ploni-regular-aaa.ttf');
    font-weight: normal;
}

@font-face {
    font-family: "ploni";
    src: url('../asstes/fonts/ploni-bold-aaa.ttf');
    font-weight: bold;
}

html,
body {
    width: 100%;
    height: 100%;
    background: #F2F2F2;
    overscroll-behavior: none;
    font-family: Arial, Helvetica, sans-serif;
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

.container {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.container-mobile {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}

.image-layout {
    position: relative;
    height: 100%;
    width: 70vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.image {
    display: block;
}

.text-container {
    background: #e1e1e1;
    position: relative;
    height: 100%;
    width: 30vw;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* border-left: 20px #f2f2f2 solid; */
    direction: rtl;
}

.text-container p {
    font-family: Arial, Helvetica, sans-serif;;
    font-size: 20px;
    /* text-align: center; */
    padding: 0 10%;
    direction: rtl;
    width: 100%;
}

.frame-error {
    width: 375px;
    height: 667px;
    display: none;
    align-items: center;
    justify-content: center;

}

.floating-container {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 0;
    margin: 35px 25px;
}

.floating-container .floating-button {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #2cb3f0;
    bottom: 0;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.floating-container .float-element {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

@keyframes floating {
    0% {
        top: 0px;
    }

    25% {
        top: 20px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 20px;
    }

    100% {
        top: 0px;
    }
}

.floating-container .floating-botton-up {
    line-height: 75px;
}

.arrow-down {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow-up {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 8px;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}

.hotspot {
    cursor: pointer;
}

.hotspot:active {
    background-color: #2cb3f0;
    opacity: 0.3;
    box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
}

.loader,
.loader:before,
.loader:after {
    background: #c9c9c9;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

.loader {
    color: #c9c9c9;
    text-indent: -9999em;
    margin: 88px auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {

    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

.loaderContainer {
    height: 100%;
    width: 100%;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 5;
}