.c22a {
  position: fixed;
  border-radius: 7px;
  left: 50%;
  top: 50%;
  width: 90%;
  /*	height: 80%;*/
  font-size: 16px;
  /*border: 1px solid #ddd;*/
  transform: translate(-50%, -60%);
  animation: x0ppop .55s ease;
  z-index: 99999;
  /* Rounded sliders */
}
.c22a .content {
  width: 100%;
  border-radius: 6px;
  display: inline-block;
  color: #000000;
  background-color: #FFF;
  height: 100%;
  padding: 0 25px;
}
.c22a .title {
  box-sizing: border-box;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  display: flex;
  color: #000000;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom: 2px solid #c6d4db;
  padding: 20px 0;
}
.c22a .title .arrow {
  font-weight: normal;
  cursor: pointer;
  font-size: 20px;
  color: #00963F;
}
.c22a .title .title-text {
  width: 100%;
  text-align: center;
  color: #003157;
}
.c22a .content-inner {
  font-size: 15px;
  padding: 15px 0;
  color: #000000;
  height: calc(100% - 89px);
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: justify;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: top;
}
.c22a .content-inner .content-title-1 {
  width: 100%;
  padding: 5px 0 6px 0;
}
.c22a .content-inner .content-text {
  padding-bottom: 15px;
}
.c22a .content-inner .content-text:last-child {
  padding-bottom: 0;
}
.c22a .content-inner .content-button-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #E5E5E5;
  border-radius: 7px;
  padding: 15px;
}
.c22a .content-inner .content-title-2 {
  font-weight: bold;
  font-size: 16px;
}
.c22a .content-inner .content-button {
  width: 45px;
}
.c22a .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: bold;
  font-size: 14px;
  color: #FFF;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top: 2px solid#c6d4db;
  padding: 20px 0;
}
.c22a .buttons .button {
  background-color: #00963F;
  padding: 15px 10px;
  margin: 0 6px;
  border-radius: 5px;
  cursor: pointer;
  justify-self: center;
  text-align: center;
  width: 80%;
}
.c22a .buttons .button:last-child {
  background-color: #45D048;
}
.c22a .close {
  position: absolute;
  z-index: 103;
  height: 36px;
  width: 36px;
  top: -16px;
  background-color: #184257;
  right: -16px;
  border: 3px solid #FFF;
  border-radius: 20px;
  font-weight: bold;
  color: #FFF;
  padding-left: 9px;
  padding-top: 1px;
  font-size: 22px;
  cursor: pointer;
}
.c22a .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.c22a .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.c22a .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #B3B3B3;
  -webkit-transition: .4s;
  transition: .4s;
}
.c22a .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.c22a input:checked + .slider {
  background-color: #00963F;
}
.c22a input:focus + .slider {
  box-shadow: 0 0 1px #00963F;
}
.c22a input:checked + .slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}
.c22a .slider.round {
  border-radius: 12px;
}
.c22a .slider.round:before {
  border-radius: 50%;
}
/* width */
div.c22a ::-webkit-scrollbar {
  width: 12px;
}
/* Track */
div.c22a ::-webkit-scrollbar-track {
  background: #b8c5cc;
}
/* Handle */
div.c22a ::-webkit-scrollbar-thumb {
  background: #94a2a8;
  border-radius: 2px;
}
/* Handle on hover */
div.c22a ::-webkit-scrollbar-thumb:hover {
  background: #808d92;
}
.c22a-no-animation {
  animation: none;
}
@keyframes c22aButtonOutline {
  from {
    outline-offset: 7px;
  }
  to {
    outline-offset: -1px;
  }
}
.c22a-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
  z-index: 99998;
  animation: x0pfadeIn .5s ease;
}
@keyframes c22aslideDown {
  from {
    transform: translate(-50%, -260%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
}
