* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
    border: 0;
    outline: 0;
}

.loader {
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
}

.percent {
    width: 100%;
    height: 100%;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 119, 255) 0%, rgba(0, 255, 128, 1) 100%);
    transition: width 0.5s;
}

.pulse {
    animation: pulse 2s linear infinite;
}

@keyframes pulse {
    from { opacity: 1; }
    50% { opacity: 0.3; }
    to { opacity: 1; }
}

.image > input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
}

/* For Chrome, Edge, Safari, Opera (WebKit browsers) */
::-webkit-scrollbar {
    width: 10px; /* Width of the vertical scrollbar */
    height: 10px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #0088FF; /* Color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #b3fce6; /* Color of the scrollbar thumb */
    border-radius: 5px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #00FF80; /* Color when hovering over the thumb */
}

/* For Firefox (standard properties) */
* {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: #00bc5e #B3FCE6; /* thumb color track color */
}

html, body {
    width: 100%;
    height: 100%;
}

svg {
    width: 100%;
    height: 100%;
    fill: url(#svg-gradient);
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}

#defs {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.button:hover svg {
    fill: #0088FF;
}

.clickable {
    cursor: pointer;
}

.hide {
    display: none;
}

.document {
    width: 100%;
    height: 100%;
}

.scroller {
    padding: 80px 0 140px 0;
    width: 100%;
    height: calc(100% - 220px);
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.search {
    margin-left: -320px;
    padding-top: 10px;
    width: 640px;
    height: 50px;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
}

.search > label {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    left: 10px;
}


.search > label > img {
    width: 100%;
    height: 100%;
}


.search > input, .navigation {
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #B3FCE6;
    /*border: 1px solid #00FF80;*/
}

.search > input {
    font-size: 24px;
    text-indent: 60px;
    border-radius: 0 10px 0 10px;
}

.search > input::placeholder {

background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    background-clip: text;
    color: transparent;
}

.navigation {
    border-radius: 10px 0 10px 0;
    position: absolute;
    bottom: 10px;
    left: 0;
}

.navigation > .left {
    width: 60px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.navigation > .middle {
    margin-left: -150px;
    width: 300px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 50%;
}

.navigation > .right {
    width: 60px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

.navigation .button {
    width: 60px;
    height: 50px;
    float: left;
    position: relative;
}

.navigation .button > .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 15px;
}

.navigation .button > .label {
    margin-top: -30px;
    padding: 3px;
    color: #00DA6B;
    text-align: center;
}

.navigation .button:hover > .label {
    text-decoration: underline;
}

.promotion {
    width: 100%;
    height: 30px;
    background-color: #00da6b;
    border-radius: 15px;
    overflow: hidden;
}

.promotion > label {
    width: 100px;
    height: 30px;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    color: #ffffff;
    line-height: 30px;
    text-align: center;
    display: block;
    float: left;
}
.promotion > label:hover {
    color: #B3FCE6;
}


.promotion > input {
    width: calc(100% - 140px);
    height: 30px;
    background-color: transparent;
    color: #ffffff;
    text-indent: 18px;
    float: left;
}

.promotion > input::placeholder {
    color: #ffffff;
}

.promotion > .button {
    width: 40px;
    height: 30px;
    background-color: #0088FF;
    float: left;
    position: relative;
}

.promotion > .button > .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 10px;
}

.promotion > .button > .icon > svg {
    fill: #ffffff;
}

.promotion > .button:hover > .icon > svg {
    fill: #00da6b;
}

.bottom {
    margin-left: -320px;
    padding-bottom: 10px;
    width: 640px;
    height: 120px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 5;
}