html,
body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  min-height: 100vh !important;
  height: 100vh !important;
}
body.swal2-height-auto{
  height: 100vh !important;
}
body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
p {
  margin: 0;
  padding: 0;
}
header {
  background: #A81E1E;
  padding: 28px 120px;
}
header .con-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .con-header .logo-block img {
  height: 45px;
}
header .con-header .theame-block {
  display: flex;
  align-items: center;
}
header .con-header .theame-block .ic-theme {
  height: 14px;
}
header .con-header .theame-block .checkbox-theme {
  cursor: pointer;
  margin: 0 5px;
  width: 33px;
  height: 16px;
  background: #fff;
  border-radius: 30px;
  position: relative;
}
header .con-header .theame-block .checkbox-theme input {
  height: 0;
  width: 0;
}
header .con-header .theame-block .checkbox-theme input::before {
  cursor: pointer;
  content: '';
  display: block;
  background: #A81E1E;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 4px;
  transition: all 0.3s ease;
}
header .con-header .theame-block .checkbox-theme input:checked:before {
  left: 19px;
}
.main-btn {
  cursor: pointer;
  text-decoration: none;
  background: #A81E1E;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  height: 30px;
  padding: 0 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-btn svg {
  height: 13px;
  width: 13px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.main-btn svg path {
  transition: all 0.3s ease;
}
.main-btn:hover {
  color: #fff;
  transform: scale(1.1);
}
footer {
  background: #A81E1E;
  padding: 30px 0;
}
footer .foot-con {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .foot-con img {
  height: 30px;
}
footer .foot-con .foot-btn {
  background: #fff;
  font-weight: 400;
  color: #A81E1E;
  margin-left: 20px;
}
.del-photo-btn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A81E1E;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s ease;
}
.del-photo-btn img {
  width: 14px;
}
.del-photo-btn:hover {
  transform: scale(1.1);
}
.dark {
  color: #fff !important;
  background: #2F2F2F;
}
.dark .inp-dark {
  color: #fff !important;
}
.dark .inp-dark select {
  color: #fff;
  background: #2F2F2F;
}
.dark .inp-dark select option {
  background: #2F2F2F;
}
.dark .inp-dark::before,
.dark .inp-dark::after {
  background: #fff !important;
}
.load-con {
  position: relative;
  margin-bottom: 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.loader {
  z-index: 100000;
  width: 48px;
  height: 48px;
  border: 5px solid #A81E1E;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  animation: pulse 1s linear infinite;
  /*margin-left: -24px;*/
  /*top: 120%!important;*/
}
.loader:after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border: 5px solid #A81E1E;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scaleUp 1s linear infinite;
}
@keyframes scaleUp {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  60%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes pulse {
  0%,
  60%,
  100% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.2);
  }
}
.swal2-styled.swal2-confirm {
  background: #A81E1E;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
.dark .swal2-container.swal2-center > .swal2-popup {
  background: #2F2F2F;
}
.dark .swal2-title,
.dark .swal2-html-container {
  color: #fff !important;
}
@media (max-width: 1600px) {
  header {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  header {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  header .con-header .logo-block img {
    height: 35px;
  }
}
@media (max-width: 500px) {
  footer .foot-con {
    flex-direction: column;
  }
  footer .foot-con .foot-btn {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  header .con-header {
    flex-direction: column;
  }
  header .con-header .theame-block {
    margin-top: 30px;
  }
}
