img.everlast-logo {
  border-radius: 30%;
  width: 70px;
  height: 70px;
}

@media (max-width:560px) {
  .main-bottom {
    margin-bottom: 30px;
  }
  .main-top {
    margin-top: 15px;
  }
  .credit-info {
    max-width: 70%;
  }
}

.navbar-space {
  width: 127px;
}

@media (max-width:560px) {
  .navbar-space {
    width: 30px;
  }
}

.noselect { 
    -ms-user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
    user-select: none; 
}

.main-application {
  margin-left: auto;
  margin-right: auto;
}

.main-top {
  margin-top: 25px;
}

.search-input {
  width: 76%;
}

.application-date {
  display: inline;
}

@media (max-width:560px) {
  .search-input {
    width: 100%;
  }
  
  .application-date {
    display: none;
  }
}

input {
  color:inherit;
  font: Inter;
  font-weight:500;
  margin:0;
}

input::placeholder {
  color:inherit;
  font:Inter;
  font-weight:500;
  margin:0;
}

*,:focus {
  outline:0;
}

@media all and (min-width: 480px) {
  .desktopContent {display:block;}
  .phoneContent {display:none;}
}

@media all and (max-width: 479px) {
  .desktopContent {display:none;}
  .phoneContent {display:block;}
}

/*Website preloader*/
.page-loader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right:0;
  bottom:0;
  z-index: 9999;
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden
}

.preloader {
  position: relative;
  display: block;
  font-size: 0;
  vertical-align: top;
  width: 32px;
  height: 32px;
  animation: preloader .7s linear infinite
}

.preloader-icon {
  color: gray;
}

@keyframes preloader {
  000% {
    transform: rotate(0)
  }

  to {
    transform: rotate(1turn)
  }
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1
}

::-webkit-scrollbar-track {
  background: #d9d9d9
}