.navbar {
    position: absolute;
    width: 100vw;
    height: 120px;
    top: 0;
    left: 0;
    background-color: rgb(0, 19, 32);
}

.page-loader{
    display:block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 100000;    
}

.loader{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 1px solid rgba(0,0,0, 0.08);
    border-right: 1px solid rgba(0,0,0, 0.08);
    border-bottom: 1px solid rgba(0,0,0, 0.08);
    border-left: 1px solid rgb(0, 19, 32);
  
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    
    will-change: transform;
  
    z-index: 100001;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body {
    font-size: 17px;
    font-family: 'dm sans';
    background-color: rgb(255, 255, 255);
}

::placeholder {
    font-family: 'dm sans';
}

.hero-page-form {
    background-color: white;
    height: 500px;
    width: 100%;

    position: relative;

    display: flex;
    flex-direction: column;
}

.hero-page-form form {
    position: relative;
    width: 95%;
    margin: auto;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
}

.input-block {
    display: flex;
    flex-direction: column;
    width: calc(33.3333% - 30px);
    padding: 8px 15px;
}

.input-block-full-width {
    width: calc(100% - 30px);
}

.input-block label{
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 4px;
}

.input-block input{
    height: 35px !important;
    width: calc(100% - 10px);
    padding: 0 5px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(134, 134, 134);
}

.input-block .input{
    height: 35px !important;
    width: calc(100%);
    border-radius: 6px;
    padding: 0 5px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(134, 134, 134);
}

.button-block button{
    
    background-color: #ff7b00;
    height: 57px;
    width: auto !important;
    color: #000000;
    font-weight: 600;
    font-family: 'dm sans';
    border-radius: 10px;
    font-size: 1em;
    border: 1px solid rgb(211, 211, 211);
    cursor: pointer;

    transition: all .3s ease;
}

.button-block button:hover {
    background: rgb(5, 39, 78);
    color: rgb(255, 255, 255);
}

@media only screen and (max-width:899px) {
    .input-block {
        width: calc(100% - 30px);
    }
}

.navbar-container {
    width: calc(100% - 30px);
    max-width: 960px;
    height: 100%;
    margin: auto;
    padding: 0 15px;
    color: white;
    display: flex;
    position: relative;
}

.navbar-container a {
    color: #fff;
}

.left-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 50%;
}

.nav-title {
    font-size: 1.9em;
    font-weight: 600;
    height: 40%;
}

.nav-aiintrebari {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.1em;
}

.right-nav {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: flex-end;
    width: 50%;
    position: relative;
    right: 0;
    align-items: center;
}

.right-nav a {
    padding: 9px 13px;
    border-radius: 2px;
    transition: all .3s ease;
    font-weight: 500;
}
@media only screen and (min-width:900px) {
.active-link {
    background-color: rgba(255, 102, 0, 0.74);
    font-weight: 400 !important;
}
}

.right-nav a:hover {
    background-color: rgba(0, 0, 0, 0.486);
}

.mobile-only {
    display: none;
}

.mobile-hidden {
    display: flex;
}

.burger {
    display: none;
}

@media only screen and (max-width:899px) {
    .mobile-only {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }

    body {
        font-size: 15px;
    }

    .left-nav {
        width: 100%;
    }

    .nav-title {
        align-self: center;
        color: rgb(0, 19, 32);
        height: 50%;
    }

    .nav-title img{
        height: 100%;
    }

    .right-nav {
        display: none;
        padding-top: 100px;
        flex-direction: column;
        justify-content: start;
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgb(255, 255, 255);
        opacity: 0;
        transition: all .3s ease;
        transform: translateY(-20px);
    }

    .show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .right-nav a {
        color: rgb(0, 19, 32);
        font-size: 1.4em;
        font-weight: 500;
        padding: 8px;
    }

    .active-link {
        color: #000 !important;
    }

    .active-link::after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: rgb(0, 0, 0);
        display: block;
    }

    .nav-aiintrebari {
        display: none;
    }

    .navbar { 
        height: 70px;
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 1px 11px rgba(0, 0, 0, .10);
        position: fixed;
        z-index: 10000;
    }

    .hero-page-form {
        margin-top: 70px;
    }

    .call-nav-button {
        position: absolute;
        right: 25px;
    }

    .call-nav-button svg {
        transform: rotate(-10deg);
        height: 23px;
        fill: rgb(0, 19, 32) !important;
    }

    .burger {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        user-select: none;
        cursor: pointer;
        transition: 300ms;
        border-radius: 10px;
        

      }
      .burger input[type="checkbox"] {
        appearance: none;
        transition: 300ms;
      }
      
      .burger::before,
      .burger::after {
        content: "";
        transition: 300ms;
        transform-origin: center center;
      }
      
      .burger::before {
        transform: translateY(8px);
      }
      .burger::after {
        transform: translateY(-8px);
      }
      .burger .line,
      .burger::before,
      .burger::after {
        width: 23px;
        height: 2.2px;
        display: block;
        background-color: rgb(0, 19, 32);
        border-radius: 5px;
        position: absolute;

      }
      
      .burger .line:checked {
        width: 0;
        transition-delay: 100ms;
      }
      .burger:has(.line:checked)::before {
        animation: animation1 400ms ease-out 0s 1 both;
      }
      .burger:has(.line:checked)::after {
        animation: animation2 400ms ease-out 0s 1 both;
      }
      
      .burger:active {
        scale: 0.95;
      }
      @keyframes animation1 {
        0% {
          transform: translateY(8px) rotate(0deg);
        }
        50% {
          transform: translateY(0px) rotate(0deg);
        }
        100% {
          transform: translateY(0px) rotate(45deg);
        }
      }
      @keyframes animation2 {
        0% {
          transform: translateY(-8px) rotate(0deg);
        }
        50% {
          transform: translateY(0px) rotate(0deg);
        }
        100% {
          transform: translateY(0px) rotate(-45deg);
        }
      }
    
    .burger-icon {
        position: absolute;
        left: 20px;
        z-index: +2;
    }

    .hero-page-form {
        height: auto;
        background-position: 0% 0% !important;
        display: flex;
        flex-direction: column;
    }

    .hero-page-form form {
        margin-top: 19px;
        padding-bottom: 40px;
    }
}

.yellow {
    color: rgb(245, 233, 0);
}

.statie-oficiala-text {
    font-size: 1em;
    font-weight: 600;
    position: absolute;
    bottom: 18px;
    right: 13px;
}

.intro-text {
    align-self: center;
    margin-top: 40px;
    z-index: +1;
    margin-bottom: 30px;
    text-align: center;
    color: #ff7b00;
    font-weight: 700;
    font-size: 2.2em;
}

.info-page {
    width: calc(100% - 30px);
    max-width: 960px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 30px;
}

.info-div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.info-div .left {
    width: calc(60% - 22px);
    padding-right: 22px;
}

.info-div .right {
    width: 40%;
}

.info-div-img {
    width: 100%;
    border-radius: 5px;
}

.info-title {
    margin: 0;
    font-size: 1.2em;
    margin-bottom: 16px;
}

.info-text {
    margin: 0;
    font-size: 1em;
    font-weight: 500;
}

.bold-600 {
    font-weight: 600;
}

.info-div .img-left {
    width: 34%;
}

.info-div .text-right {
    width: calc(66% - 20px);
    padding-left: 20px;
}

.info-big-title {
    margin: 10px 0;
    font-size: 1.6em;
}

.hoverr {
    transition: all .3s ease;
}

.hoverr:hover {
    color: #05299c;
}

.footer {
    padding: 40px 0;
    background: rgb(0,19,32);
    background: -moz-linear-gradient(180deg, rgba(0,19,32,1) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,19,32,1) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(180deg, rgba(0,19,32,1) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001320",endColorstr="#000000",GradientType=1);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
}

.footer a {
    color: #f7f7f7;
}

.intrebare-footer {
    font-size: 1.3em;
    color: #dbdbdb;
    font-weight: 600;
}

.telefonfooter {
    margin-top: 10px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
}

.orange {
    color: rgb(238, 115, 9) !important;
}

.textmare-footer {
    font-size: 1.3em;
}

.lista-alte-orase {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 25px;
}

.lista-alte-orase a {
    color: #ececec;
    margin: 4px 40px;
    transition: all .3s ease;
}

.lista-alte-orase a:hover {
    font-weight: 700;
    color: #ffffff;
}

.emailfooterlink {
    margin-top: 25px;
    margin-bottom: 3px;
    font-size: .9em;
    color: #dadada !important;
}

.imp-links a{
    margin: 6px;
    font-size: .8em;
    color: #dadada !important;
    transition: all .3s ease;
}

.imp-links a:hover {
    color: #ffffff !important;
}

.dezvoltatdeelias {
    font-size: .8em;
    color: transparent !important;
    padding: 0 40px;
}

.footer-final-info {
    font-size: .9em;
    color: #f1f1f1 !important;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.bigger-padding-info-div {
    margin-top: 80px;
}

.spatiu-nav-body {
    width: 100%;
    height: 120px;
}

.fwidthcont {
    width: 100%;
}

.treimotivesavinzi {
    display: flex;
    margin-top: 20px;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.motivsavinzi {
    width: 32%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.motivsavinziimg {
    width: 80%;
    aspect-ratio: 1/1;
    border-radius: 50%;      /* Rotunjeste colțurile pentru a forma un cerc */
    overflow: hidden; 
}

.motivsavinziimg img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

.motivsavinzi h3 {
    font-size: 1em;
}

.banner-above-footer {
    padding: 20px 0;
    background-color: rgb(0, 19, 32);
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    color: #e4e4e4;
}

@media only screen and (max-width:899px) {
    .no-mobile {
        display: none;
    }

    .info-div .left {
        width: 100%;
        padding: 0;
    }

    .info-div .text-right {
        width: 100%;
        padding: 0;
    }

    .info-div .img-left {
        width: 100%;
    }

    .info-div {
        flex-direction: column;
    }

    .breaking-line {
        width: 99%;
        align-self: center;
        height: 1px;
        background-color: #c9c9c9;
        margin-top: 35px;
    }

    .bigger-padding-info-div {
        margin-top: 40px;
    }

    iframe {
        width: 95% !important;
        height: 200px;
    }

    .lista-alte-orase {
        width: 100%;
        height: auto;
    }

    .footer {
        text-align: center;
        width: calc(100vw - 30px);
        padding-left: 15px;
        padding-right: 15px;
    }

    .spatiu-nav-body {
        width: 100%;
        height: 70px;
    }
}

.hero-area {
    height: calc(500px) !important;
    position: relative;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-area .background {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    position: absolute;
}

.hero-firsttext {
    z-index: +1;
    font-size: 3em;
    font-family: 'dm sans';
    margin-bottom: 0px;
    color: #ffffff;
}

.hero-secondtext {
    z-index: +1;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 500;
}

.orange-sec {
    color: #ff9100;
}

.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 19 32 / 50%);
}

.actionbuttons {
    z-index: +1;
    display: flex;
}

.actionbuttons a {
    color: rgb(241, 241, 241);
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 100px;
    font-weight: 700;
    font-family: 'montserrat';
    padding: 16px 26px;
    border: 1px solid rgb(73, 73, 73);
    background-color: #000000a9;

    transition: all .3s ease;
}

.actionbuttons a:hover {
    background-color: #ff8800a9;
    letter-spacing: 0.1em;
}

.arrow {
    opacity: 0;
    position: absolute;
    bottom: 30px;
}

.arrow-first {
    animation: arrow-movement 1.7s ease-in-out infinite;
}

.arrow:before,
.arrow:after {
    background: #fff;
    content: '';
    display: block;
    height: 1px; 
    position: absolute;
    width: 15px;
}

.arrow:before {
    transform: rotate(45deg) translateX(-23%);
    transform-origin: top left;
}

.arrow:after {
    transform: rotate(-45deg) translateX(23%);
    transform-origin: top right;
}
@keyframes arrow-movement {
    0% {
        opacity: 0;
        bottom: 60px;
    }
    70% {
        opacity: 1;
    }
    100% { 
        opacity: 0;
    }
}

@media only screen and (max-width:899px) {
    .hero-area {
        height: calc(60vh - 70px) !important;
        position: relative;
        margin-top: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #evaluare {
        margin-top: 10px;
    }

    .hero-firsttext {
        font-size: 2em;
        padding: 0 10px;
    }

    .hero-secondtext {
        font-size: 1em;
        margin-top: 10px;
        padding: 0 10px;
    }
    
}

.formular-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h1forcontactform {
    font-size: 2em;
    font-weight: 600;
}

.resp-text {
    opacity: 0;
    transition: all .3s ease !important;
    transform: translateY(30px);
}
    
.resp-text.visible-text {
    opacity: 1;
    transform: translateY(0px);
}

.elias-a-fost-si-pe-aici {
    display: flex;
    align-items: center;
    margin-top: 25px;
    font-family: 'inter';
    color: #fff;
    font-size: 1em;
}

.elias-te-vede {
    height: 2em;
    margin-left: 7px;
}

.formularcontact1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;

    padding-bottom: 10px;
}

.formularcontact1 .block-elias {
    width: 31%;
    display: flex;
    flex-direction: column;
}

.block-elias label {
    font-size: 1em;
    font-weight:600;
    margin-bottom: 3px;
}

.block-elias input {
    height: 35px !important;
    width: calc(100% - 10px);
    padding: 0 5px;
    border-radius: 6px;
    background-color: rgb(243, 243, 243);
    border: 1px solid rgb(134, 134, 134);
}

.formularcontact1 .big-input-block {
    width: 100% !important;
    margin-top: 15px;
}

.big-input-block input {
    height: 75px !important;
}

.formularcontact1 button {
    height: 35px !important;
    width: auto;
    padding: 10px 35px;
    display: flex;
    cursor: pointer;
    color: #000;

    margin-top: 20px;

    align-items: center;
    font-size: 1.1em;
    font-weight: 600;
    transition: all .3s ease;
    border-radius: 6px;
    background-color: rgb(243, 243, 243);
    border: 1px solid rgb(134, 134, 134);
}

.formularcontact1 button:hover {
    background-color: rgb(189, 189, 189);
}

#formResponse {
    font-size: 1.1em;
    font-weight: 600;
    width: 100%;
}

@media only screen and (max-width:899px) {
    .formularcontact1 .block-elias {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 5px;
    }
}

#formloader {
    height: 30px;
    width: 100%;
    margin-top: 10px;
}

.whatsapplogo {
    height: 30px;
    margin: 7px;
    margin-top: 30px;

}

.whatsapplogo img {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

.footer-social-links {
    display: flex;
}

.reviews-div {
    flex-wrap: wrap;
    transition: all .3s ease;
}

.reviews-title {
    width: 100%;
    font-size: 2.4em;
    margin-bottom: 30px;
    text-align: center;
}

.review-card {
    padding: 15px;
    width: calc(32% - 30px);
    margin: auto;
    height: auto;
    border-radius: 5px;
    background-color: #f3f3f3;

}

.review-card h3 {
    margin: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.review-card p {
    margin: 0;
    font-size: 1.1em;
}

@media only screen and (max-width:899px) {
    .review-card {
        width: calc(100% - 30px);
        margin-bottom: 15px;
    }
}

.reviews-div a {
    color: rgb(238, 115, 9);
    font-size: 1em;
   
    margin-bottom: 100px;
    font-weight: 700;
    font-family: 'montserrat';
    padding: 16px 26px;
    border: 1px solid rgb(187, 187, 187);
    background-color: #fafafa;
    margin: auto;
    margin-top: 15px;
    border-radius: 5px;

    transition: all .3s ease;
}

.more-reviews-div {
    width: 100%;
    height: auto;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 0px;
    transform: translateY(-10px);
    opacity: 0;
    height: 0;

    transition: all .3s ease;
    min-height: 0;
}

.more-reviews-div .review-card {
    margin-top: 10px;
}

.more-reviews-div.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    height: auto;
    min-height: 300px;
}

body {
    transition: all .3s ease;
}

.googlereviews {
    width: 100%;
    display: flex;
    justify-content: center;
}

.googlereviews a {
    height: 40px;
    border: 0px none;
    background-color: transparent;
    margin: 0;
}

.googlereviews img {
    height: 100%;
}

/* Stil pentru slider */
.slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    background-color: transparent;
    transition: background-color .3s ease;
    border-radius: 5px;
  }

  .slider:hover {
    background: rgb(2,0,36);
background: -moz-linear-gradient(153deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
background: -webkit-linear-gradient(153deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
background: linear-gradient(153deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#ebebeb",GradientType=1);
  }

  .slider button {
    opacity: 0;
    transition: all .3s ease;
  }

  .slider:hover button {
    opacity: 1;
  }
  
  .slides {
    display: flex;
    transition: all 0.5s ease;
  }
  
  .slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px;
    text-align: left;
    background-color: transparent;
    border: 0px transparent #ddd;
    margin: 0;

    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    align-items: center;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
    background-color: transparent;
    border: none;
    border-radius: 99999999px;
    cursor: pointer;
    font-size: 1.2em;
  }
  
  .prev {
    left: 0;
  }

  .prev {
    transform:translateY(-50%) rotate(180deg);
  }
  
  .next {
    right: 0;
  }

.profilepicture {
    width: 90px;
    height: 90px;
    border-radius: 99999999px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.profilepicture img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.review-text {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    max-width: calc(100% - 110px);
}

@media only screen and (max-width:899px) {
    .slider:hover {
        background-color: transparent;
      }

      .slide {
        flex-direction: column;
        text-align: center;
      }

      .review-text {
        padding: 0;
        padding-top: 30px;
        width: 100%;
        max-width: 100%;
      }
}

.bigbigtitle {
    font-size: 2em;
}

option, select {
    font-family: 'dm sans';
}

button {
    font-family: 'dm sans';
}

input, textarea, select { 
    font-family: inherit; 
    font-weight: 600;
}

#formloader {
    height: 30px;
    width: 100%;
    margin-top: 10px;
}

#formloader img {
    height: 100%;
}