/* Header */
ul,
li {
  list-style: none;
}

header {
  width: 100%;
}

header img {
  max-width: 100%;
}

.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

.header_button {
  position: relative;
  top: -25px;
}

.header_button a {
  white-space: nowrap;
}

.header_button span {
  color: #ccc;
}

.button_list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob_buton {
  display: none;
}

.button_list a {
  display: flex;
  padding: 2px 5px;
  color: #fff;
  border-radius: 5px;
  align-items: center;
  text-align: center;
}

.red_button {
  background-color: #e84c3d;
}

.blue_button {
  background-color: #1d71b8;
}

.blue_button img {
  width: 20px;
  max-width: 100%;
}

.header_bottom {
  width: 100%;
}

.bottom_list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background-color: #1d71b8;
}

.bottom_list a {
  display: table-cell;
  border-right: 1px solid #fff;
  padding: 0 5px;
  color: #fff;
}

.lust {
  border-right: none !important;
}

.header_descr {
  width: 100%;
  background-color: #f3f3f3;
  margin-top: 10px;
}

.descr_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.descr_list a {
  border-left: 1px solid #e5e5e5;
  color: #333;
  font-size: 12px;
  padding: 3px 5px;
  white-space: nowrap;
}

@media (max-width:1090px) {
  .descr_list {
    overflow-x: scroll;
    justify-content: start;
  }
}

@media (max-width: 906px) {
  .header_top {
    justify-content: stretch;
  }

  .header_button {
    position: static;
    margin-left: auto;
  }

  .bottom_list {
    background-color: #fff;
    overflow-x: scroll;
    overflow-y: hidden;
    text-align: center;
    white-space: nowrap;
    border-top: 2px solid #1d71b8;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: start;
  }

  .bottom_list a {
    color: #000;
    border-right: 1px solid #ccc;
    text-transform: uppercase;
  }
}

@media (max-width:748px) {
  .header_logo img {
    width: 200px;
  }

  .blue_button {
    display: none !important;
  }

  .mob_buton {
    display: block;
  }
}

@media (max-width:748px) {
  .header_logo {
    display: none;
  }
}

/* Footer */
footer {
  width: 100%;
  padding: 10px;
  background-color: #272727 !important;
}

.footer_content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left_list {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.list1 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.list1 a {
  color: #fff;
  font-size: 17px;
  white-space: nowrap;
}

.list2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.list2 a {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.footer_right p {
  color: #fff;
  font-size: 20px;
  margin-left: 13px;
}

.footer_right a {
  display: block;
}

@media (max-width:1005px) {
  .footer_content {
    flex-direction: column;
    align-items: start;
  }

  .footer_left {
    margin-left: 14px;
  }

  .list1 {
    margin-bottom: 10px;
  }

  .footer_right {
    margin-top: 20px;
  }
}

[type="submit"]:disabled {
  display: none !important;
}
 
.ring-loading {
  width: 10px;
  height: 10px;
  padding: 15px !important;
  border: 7px dashed #000;
  border-radius: 100%;
  display: none;
  margin: 10px auto !important;
  animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}
 
[type="submit"]:disabled+.ring-loading {
  display: block !important;
}
 
@keyframes loadingD {
  0% {
    transform: rotate(0deg);
  }
 
  50% {
    transform: rotate(180deg);
  }
 
  100% {
    transform: rotate(360deg);
  }
}