@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  min-width: 320px;
  text-rendering: optimizeSpeed;
  font-size: 16px;
  line-height: 1.3;
  overflow-x: hidden;
  font-family: "Montserrat", Courier, monospace;
  background: url(../img/Redirect1.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body.fixed {
  overflow: hidden;
}

.App {
  overflow: hidden;
  padding-bottom: 30px;
  min-height: calc(100vh - 50px);
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

input {
  outline: none;
  border: 0;
  padding: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul {
  padding: 0;
  margin: 0;
}

.top-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.bottom-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.middle-image {
  position: absolute;
  top: 500px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.wrapper {
  position: relative;
  z-index: 10;
}

.header {
  padding: 16px 0;
}
.header .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .row .logo {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
}
.header .row .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header .row .list .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: white;
  padding: 0 8px;
  border-radius: 10px;
  height: 40px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .row .list .link {
    font-size: 12px;
    height: 35px;
  }
  .header .row .list .link svg {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header .row .list .link {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .header .row .list .link {
    font-size: 10px;
    height: 30px;
  }
  .header .row .list .link svg {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .header .row .list .link {
    font-size: 8px;
    height: 25px;
  }
  .header .row .list .link svg {
    display: none;
  }
}
.header .row .list .link:hover {
  opacity: 0.8;
}

.nav .row {
  height: 70px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.4235294118);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}
@media screen and (max-width: 768px) {
  .nav .row {
    font-size: 12px;
    height: 45px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
  }
}
@media screen and (max-width: 600px) {
  .nav .row {
    font-size: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
    padding: 10px;
  }
}

.home {
  padding-top: 22px;
}

.accordion-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.accordion {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  padding: 21px 29px;
  background: rgba(255, 255, 255, 0.4235294118);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .accordion {
    padding: 15px 20px;
  }
}
.accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .accordion-header {
    padding: 0;
    gap: 10px;
  }
}
.accordion-header .arrow {
  margin-left: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background: #F0F0F0;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .accordion-header .arrow {
    width: 25px;
    height: 25px;
  }
}
.accordion-header .arrow svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .accordion-header .arrow svg {
    width: 15px;
    height: 15px;
  }
}
.accordion-header .arrow.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-header .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.accordion-header h2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #000000;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .accordion-header h2 {
    font-size: 14px;
  }
}
.accordion-header a {
  color: #592FD9;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .accordion-header a {
    font-size: 12px;
    gap: 3px;
  }
}
.accordion-header a img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .accordion-header a img {
    width: 15px;
    height: 15px;
  }
}

.topbar {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  padding: 15px 29px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.4235294118);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .topbar {
    padding: 10px 20px;
    gap: 5px;
    font-size: 12px;
  }
}
.topbar input {
  height: 35px;
  border-radius: 5px;
  padding: 0 10px;
  min-width: 250px;
}

.links-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.bank-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.accordion-content {
  display: none;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .accordion-content {
    margin-top: 20px;
    padding: 0;
  }
}
.accordion-content.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.bank-section {
  border: 1px solid #D2D2D2;
  padding: 17px;
  border-radius: 5px;
}
.bank-section h3 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .bank-section h3 {
    font-size: 14px;
  }
}
.bank-section .metadata {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #000000;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .bank-section .metadata {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.bank-section .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .bank-section .list {
    font-size: 12px;
    gap: 10px;
  }
}
.bank-section .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .bank-section .list li {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bank-section .list li .card-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.btn {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 35px;
  border-radius: 5px;
  border: 2px solid transparent;
  min-width: 81px;
  max-width: 200px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 10px;
    height: 30px;
    padding: 0 5px;
    min-width: 60px;
  }
}
.btn-outline {
  border: 2px solid #E30026;
  color: #E30026;
  background: transparent;
}
.btn-primary {
  background: #E30026;
  color: white;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #E30026;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  color: black;
}

[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.default-section {
  padding: 25px 0;
}
.default-section h2 {
  gap: 5px;
  margin-bottom: 50px;
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .default-section h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.default-section .title {
  font-weight: 600;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.default-section .columns {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 50px;
}
.default-section .columns .block {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  padding: 21px 29px;
  background: rgba(255, 255, 255, 0.4235294118);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .default-section .columns .block {
    padding: 15px 20px;
  }
}
.default-section .columns .block .item {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .default-section .columns .block .item {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.default-section .columns .block .item img {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
}

.notfound-section .container {
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.notfound-section .container h2 {
  font-size: 40px;
}

.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .text {
    gap: 10px;
    font-size: 12px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.6980392157);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 1rem;
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.3019607843);
          box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.3019607843);
  border-radius: 10px;
  padding: 45px 21px 29px 21px;
  background: rgba(255, 255, 255, 0.823529);
  backdrop-filter: blur(5px);
  padding: 40px;
}
@media screen and (max-width: 600px) {
  .popup-content {
    padding: 45px 20px 20px;
    border-radius: 12px;
    max-height: 80vh;
    overflow-y: auto;
  }
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 0;
}
.popup-close img {
  width: 100%;
  height: 100%;
}

.popup-overlay-enter {
  opacity: 0;
}

.popup-overlay-enter-active {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.popup-overlay-exit {
  opacity: 1;
}

.popup-overlay-exit-active {
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.popup-content-enter {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}

.popup-content-enter-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease, -webkit-transform 300ms ease;
}

.popup-content-exit {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.popup-content-exit-active {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease, -webkit-transform 300ms ease;
}

/* Mobile override: swipe panel enter/exit */
@media (max-width: 600px) {
  .popup-content-enter {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  .popup-content-enter-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
    transition: opacity 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, opacity 300ms ease;
    transition: transform 300ms ease, opacity 300ms ease, -webkit-transform 300ms ease;
  }
  .popup-content-exit {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .popup-content-exit-active {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
    transition: opacity 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, opacity 300ms ease;
    transition: transform 300ms ease, opacity 300ms ease, -webkit-transform 300ms ease;
  }
}
/* Mobile swipe-up effect */
@media (max-width: 600px) {
  .popup-content {
    position: absolute;
    bottom: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    max-width: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-animation: slideUp 0.3s forwards;
            animation: slideUp 0.3s forwards;
  }
}
@-webkit-keyframes slideUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.verified-seller-popup .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.verified-seller-popup .item {
  width: 100%;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-gap: 12px;
  font-weight: 600;
  text-align: left;
  background: white;
  padding: 15px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 600px) {
  .verified-seller-popup .item {
    font-size: 12px;
    padding: 10px;
  }
}

.new-contacts-popup {
  padding: 0 20px;
}
.new-contacts-popup__text {
  margin-bottom: 25px;
  text-align: center;
}
.new-contacts-popup__text.bottom {
  text-align: center;
  margin: 25px 0 0;
}
.new-contacts-popup__text.bottom p {
  font-weight: 600 !important;
}
.new-contacts-popup__text p {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #5B5B5B;
}
@media screen and (max-width: 600px) {
  .new-contacts-popup__text p {
    font-size: 14px;
  }
}
.new-contacts-popup__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.new-contacts-popup__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 16px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.new-contacts-popup__button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.2);
}
.new-contacts-popup__button svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .new-contacts-popup__button {
    font-size: 14px;
    padding: 12px 16px;
  }
  .new-contacts-popup__button svg {
    width: 20px;
    height: 20px;
  }
}
.new-contacts-popup__button--tor {
  background: linear-gradient(135deg, #7D4698 0%, #5E3370 100%);
  color: white;
}
.new-contacts-popup__button--tor:hover {
  background: linear-gradient(135deg, #8E54AB 0%, #6E4080 100%);
}
.new-contacts-popup__button--tor svg path,
.new-contacts-popup__button--tor svg circle {
  fill: white;
}

.popup-content:has(.new-contacts-popup) {
  max-width: 570px;
  padding: 30px 25px;
  background: url("../../assets/img/popup-bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .popup-content:has(.new-contacts-popup) {
    max-width: 90%;
    padding: 25px 20px;
  }
}

.link-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.link-column .copy-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #F8F8F8;
  border-radius: 8px;
  padding: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 600px) {
  .link-column .copy-link {
    padding: 10px 12px;
    gap: 8px;
  }
}
.link-column .copy-link:hover {
  background: #F0F0F0;
}
.link-column .copy-link .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .link-column .copy-link .icon {
    width: 22px;
    height: 22px;
  }
  .link-column .copy-link .icon svg {
    width: 22px;
    height: 22px;
  }
}
.link-column .copy-link a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 13px;
  color: #592FD9;
  word-break: break-all;
  line-height: 1.3;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 600px) {
  .link-column .copy-link a {
    font-size: 11px;
  }
}
.link-column .copy-link a:hover {
  color: #4520B0;
}
.link-column .copy-link .copy {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 600px) {
  .link-column .copy-link .copy {
    width: 32px;
    height: 32px;
  }
}
.link-column .copy-link .copy:hover {
  background: #F5F5F5;
  border-color: #CCCCCC;
}
.link-column .copy-link .copy:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.link-column .copy-link .copy.copied {
  background: #E8F5E9;
  border-color: #4CAF50;
}
.link-column .copy-link .copy.copied svg path {
  fill: #4CAF50;
}

.line-through {
  text-decoration: line-through;
}

.edit-area {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: -30px;
  text-decoration: underline;
}
@media (max-width: 400px) {
  .tabs {
    font-size: 12px;
    gap: 10px;
    margin-top: 0;
  }
}
.tabs .tab {
  cursor: pointer;
}
.tabs .tab.active {
  color: #C51100;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  padding: 17px 17px 10px;
  background: white;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 400px) {
  .card {
    padding: 10px;
  }
}
.card > img {
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-bottom: 12px;
}
@media (max-width: 400px) {
  .card > img {
    height: 250px;
  }
}
.card-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.card-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #530200;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  font-size: 14px;
  min-height: 34px;
  padding: 5px;
}
@media (max-width: 400px) {
  .card-links a {
    font-size: 12px;
    height: 30px;
  }
}

.sortable-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sortable-item .drag-handle {
  cursor: -webkit-grab;
  cursor: grab;
}

.vouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-gap: 20px;
  margin-top: 16px;
}

.vouches-item {
  position: relative;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.vouches-item .scale {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 57px;
  height: 57px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6980392157);
}
.vouches-item .vouches-thumb {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  cursor: pointer;
}
.vouches-item .vouches-thumb:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.vouches-item .vouches-delete {
  position: absolute;
  top: 9px;
  right: 9px;
  background: #fff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.vouches-item:hover .vouches-delete {
  opacity: 1;
}

.vouches-manager__upload {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  padding: 21px 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
  border: 10px solid #232B35;
}

.vouches-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.vouches-modal__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.vouches-modal__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
}
.vouches-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vouches-modal__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vouches-modal__nav--prev {
  left: 16px;
}
.vouches-modal__nav--next {
  right: 16px;
}

.subtitle {
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: -30px;
  text-align: center;
}
@media (max-width: 400px) {
  .subtitle {
    font-size: 12px;
    gap: 10px;
    margin-top: 0;
  }
}

.update-time-section {
  margin-bottom: 30px;
}
.update-time-section .update-time-title {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}
@media (max-width: 768px) {
  .update-time-section .update-time-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.update-time-section .update-time-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 615px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .update-time-section .update-time-container {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.update-time-section .update-time-block {
  background: white;
  border-radius: 10px;
  padding: 10px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .update-time-section .update-time-block {
    padding: 12px 15px;
    min-width: auto;
    max-width: 100%;
  }
}
.update-time-section .update-time-block .update-time-label {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .update-time-section .update-time-block .update-time-label {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.update-time-section .timezone-block {
  position: relative;
  border-bottom: 1px solid #000000;
  min-width: 200px;
}
.update-time-section .timezone-block .timezone-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-display {
    gap: 5px;
  }
}
.update-time-section .timezone-block .timezone-display .timezone-name {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #000000;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-display .timezone-name {
    font-size: 14px;
  }
}
.update-time-section .timezone-block .timezone-display .timezone-offset {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #666666;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-display .timezone-offset {
    font-size: 10px;
  }
}
.update-time-section .timezone-block .timezone-display .timezone-arrow {
  font-size: 10px;
  color: #000000;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.update-time-section .timezone-block .timezone-display .timezone-arrow.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.update-time-section .timezone-block .timezone-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1490196078);
  z-index: 1000;
  max-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-animation: dropdownFadeIn 0.2s ease;
          animation: dropdownFadeIn 0.2s ease;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown {
    max-height: 250px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-search {
  padding: 10px;
  border-bottom: 1px solid #D2D2D2;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-search {
    padding: 8px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-search .timezone-search-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: Montserrat;
  font-size: 14px;
  outline: none;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-search .timezone-search-input {
    font-size: 12px;
    padding: 6px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-search .timezone-search-input:focus {
  border-color: #E30026;
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list {
  overflow-y: auto;
  max-height: 250px;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-list {
    max-height: 200px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item {
  padding: 12px 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #F0F0F0;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item {
    padding: 10px 12px;
    gap: 8px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item:hover {
  background-color: #F5F5F5;
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item.selected {
  background-color: rgba(227, 0, 38, 0.062745098);
  font-weight: 600;
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item.no-results {
  cursor: default;
  color: #999999;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item.no-results {
    padding: 15px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item.no-results:hover {
  background-color: transparent;
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item .timezone-item-label {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item .timezone-item-label {
    font-size: 12px;
  }
}
.update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item .timezone-item-offset {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  color: #666666;
}
@media (max-width: 768px) {
  .update-time-section .timezone-block .timezone-dropdown .timezone-list .timezone-item .timezone-item-offset {
    font-size: 10px;
  }
}
@-webkit-keyframes dropdownFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.countdown-block {
  border: 2px solid #E30026;
  min-width: 214px;
}
.countdown-block .countdown-time {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #000000;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .countdown-block .countdown-time {
    font-size: 14px;
  }
}
.countdown-block .countdown-time .time-sup {
  font-size: 0.7em;
  font-weight: 400;
}

.schedule-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  border-bottom: 1px solid #000000;
}
@media (max-width: 768px) {
  .schedule-block {
    gap: 5px;
  }
}
.schedule-block .schedule-item {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  color: #414141;
}
.schedule-block .schedule-item b {
  font-weight: 800;
  color: #E30026;
}
@media (max-width: 768px) {
  .schedule-block .schedule-item {
    font-size: 12px;
  }
}
.schedule-block .schedule-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.schedule-block .schedule-edit .time-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: Montserrat;
  font-size: 14px;
}
.schedule-block .schedule-edit .schedule-edit-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.schedule-block .schedule-edit-btn {
  margin-top: 5px;
  width: 100%;
  font-size: 12px;
  height: 30px;
}