@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

body {
  color: #000;
  margin: 0;
  padding: 0;
  position: relative;

  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  -webkit-tap-highlight-color: transparent;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

input, select, button, a {
  font-family: inherit;
}
/* ====================================================
 *    section
 * ==================================================*/
.section {
  width: 100%;
  max-width: 700px;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;

  padding: 10px;
  margin: 0 auto;
  cursor: default;
  overflow: auto;
}

.section-popUp {
  width: 100%;
  height: 100vh;

  display: flex;

  position: fixed;
  top: 0;
  left: 0;

  overflow: hidden;
  background-color: #fff;
  z-index: 1000;
}

.section_title {
  width: 100%;

  color: #576a7b;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;

  padding-bottom: 10px;
  border-bottom: 1px solid #f91c3d;
}
/* ====================================================
 *    wrappers
 * ==================================================*/
.wrapper-column {
  display: flex;
  flex-direction: column;
}

.wrapper-row {
  display: flex;
}
/* ====================================================
 *    help
 * ==================================================*/
.help {
  width: 100%;

  color: #576a7b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;

  padding: 10px;
  border: 1px dashed #bfc4ce;
  border-radius: 3px;
  background-color: #fff;
}
/* ====================================================
 *    input
 * ==================================================*/
.input {
  width: 100%;
  display: flex;
  flex-direction: column;

  -webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.input label {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;

  padding: 12px;
  border-radius: 3px 3px 0 0;
  
  background-color: rgb(9, 32, 86);
  background: -webkit-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
  background: -moz-linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
  background: linear-gradient(180deg, rgb(18, 48, 117), rgb(9, 32, 86));
}

.input input {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;

  padding: 12px;
  outline: none;
  border: 1px solid rgb(9, 32, 86);
  border-radius: 0 0 3px 3px;
  border-top: none;
  background-color: #fff;
  transition: all 0.2s linear;
}

.input input:focus {
  
}

/* ===== placeholder ===== */

::-webkit-input-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

::-moz-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

:-moz-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

:-ms-input-placeholder {
  color: #576a7b;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
}

::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.2s ease;}
::-moz-placeholder                {opacity: 1; transition: opacity 0.2s ease;}
:-moz-placeholder                 {opacity: 1; transition: opacity 0.2s ease;}
:-ms-input-placeholder            {opacity: 1; transition: opacity 0.2s ease;}
:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.2s ease;}
:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.2s ease;}
:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.2s ease;}
:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.2s ease;}
/* ====================================================
 *    btn
 * ==================================================*/
.btn {
  height: 54px;
  width: 100%;
  max-width: 425px;
  min-width: fit-content;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;

  padding: 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s linear;
}

.btn:hover {
  -webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

.btn.blue {
  background-color: #055eea;
}

.btn.blue:hover {
  background-color: #2781fc;
}

.btn.red {
  background-color: #f71010;
}

.btn.red:hover {
  background-color: #fa2b56;
}

.btn.orange {
  background-color: #f9a825;
}

.btn.orange:hover {
  background-color: #f8ca4e;
}

.btn.green {
  background-color: #00bd9d;
}

.btn.green:hover {
  background-color: #00d8ba;
}
/* ====================================================
 *    notice
 * ==================================================*/
.notice {
  width: 100%;
  height: 100vh;

  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  background-color: rgba(243, 247, 251, 0.9);
  z-index: 2000;
}

.notice_item {
  width: 100%;
  max-width: 450px;

  display: flex;
  flex-direction: column;
  
  border-radius: 10px;
  background-color: #fff;

  -webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.notice_title {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(18, 48, 117, 0.2);

  padding: 10px;
  border-radius: 10px 10px 0 0;
  background-color: #00bd9d;
}

.notice_title:after {
  content: "✓";
  display: flex;
}

.notice_item_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;

  padding: 30px;
  border: 1px dashed #00bd9d;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.notice_text {
  color: #061843;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.notice_btn {
  width: 100%;
  max-width: 250px;

  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  padding: 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  background-color: #00bd9d;
  transition: all 0.2s linear;
}

.notice_btn:hover {
  background-color: #00d8ba;

  -webkit-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 4px 4px 2px 0px rgba(18, 48, 117, 0.2);
}

.notice_item.error .notice_item_bottom {
  border-color: #f71010;
}

.notice_item.error .notice_title {
  color: #fff;
  background-color: #f71010;
}

.notice_item.error .notice_title:after{
  content: "!";
}

.notice_item.error .notice_btn  {
  background-color: #f71010;
}

.notice_item.error .notice_btn:hover {
  background-color: #fa2b56;
}

/* ===== load ===== */

.load {
  width: 100%;
  max-width: 450px;

  display: flex;
  flex-direction: column;

  border-radius: 10px;

  -webkit-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  -moz-box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
  box-shadow: 6px 6px 3px 0px rgba(18, 48, 117, 0.2);
}

.load_top {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(18, 48, 117, 0.2); 

  padding: 10px;
  border-radius: 10px 10px 0 0;
  background-color: #576a7b;
}

.load_bottom {
  width: 100;

  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 30px;

  padding: 30px;
  border: 1px dashed #576a7b;
  border-radius: 0 0 10px 10px;
  border-top: none;
  background-color: #fff;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px dashed;
  border-color: #bfc4ce #bfc4ce transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid;
  border-color: transparent #f91c3d #f91c3d;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
    
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.load_text {
  color: #061843;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}