.pcm-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.pcm-modal-content {
  background-color: #fff;
  padding: 20px;
  margin: 140px auto;
  width: 360px;
  border-radius: 20px;
  position: relative;
}
.pcm-modal-content h4 {
  margin: 14px 0;
}
.lgn a {
  color: #1c39bb !important;
}
.closer {
  position: absolute;
  left: 20px;
  top: 20px;
}

.pcm-age-btn {
  padding: 10px;
  cursor: pointer;
  transition: all 0.5s;
  width: 100%;
}

.btns {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
}

button.pcm-age-btn:hover {
  background: #d6d6d6;
  transition: all 0.5s;
}
button.pcm-age-btn:nth-child(1) {
  border: 1px solid #d5d5d5;
  border-left: none;
  border-start-start-radius: 15px;
  border-end-start-radius: 15px;
}
button.pcm-age-btn:nth-child(2),
button.pcm-age-btn:nth-child(3) {
  border: 1px solid #d5d5d5;
  border-left: none;
}
button.pcm-age-btn:nth-child(4) {
  border: 1px solid #d5d5d5;
  border-start-end-radius: 15px;
  border-end-end-radius: 15px;
}

.pcm-age-btn.active {
  background-color: #2c6ffe;
  color: white;
}
button.pcm-age-btn.disabled {
  background: #eee;
  color: #b9b1b1;
}
.pcm-toggle-btn {
  margin: 10px;
  padding: 10px;
  cursor: pointer;
}
.actions {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 20px;
}
#pcm-deactivate-btn:hover {
  background-color: #cc0000;
  color: white;
  transition: all 0.5s;
}
#pcm-deactivate-btn {
  background-color: #ffd9d9;
  color: #cd2e2e;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex-basis: 50%;
  transition: all 0.5s;
  border-radius: 10px;
}
#pcm-cancel-btn {
  padding: 10px;
  cursor: pointer;
  flex-basis: 50%;
  border-radius: 10px;
  flex: auto;
}
div#pcm-password-container {
  width: 100%;
  display: flex;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
}

button#pcm-confirm-deactivation {
  flex-grow: 1;
  background: #fed9d9;
  color: #cb3131;
}
#pcm-password-input,
#pcm-password-input:-internal-autofill-selected {
  background-color: #f2f2f2 !important;
}

/* toggle */
.holder {
  position: relative;
  height: 40px;
  width: 80px;
  margin: 5px;
  border-radius: 50px;
  background: #bdc3c7;
  transition: 0.15s background ease-out;
}

.toggle {
  position: absolute;
  top: -1px;
  width: 42px;
  height: 42px;
  border-radius: 60px;
  background: #ecf0f1;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
}

@keyframes toggleOn {
  0% {
    height: 42px;
    left: -1%;
    top: -1px;
    border-radius: 60px;
    background: #ecf0f1;
  }
  15% {
    height: 38px;
    top: 0px;
    border-radius: 100px;
  }
  100% {
    height: 42px;
    left: calc(101% - 42px);
    top: -1px;
    border-radius: 60px;
    background: #1c39bb;
  }
}
@keyframes toggleOff {
  0% {
    height: 42px;
    left: calc(101% - 42px);
    top: -1px;
    border-radius: 60px;
    background: #1c39bb;
  }
  15% {
    height: 36px;
    top: 0px;
    border-radius: 100px;
  }
  100% {
    height: 42px;
    left: -1%;
    top: -1px;
    border-radius: 60px;
    background: #ecf0f1;
  }
}
.off {
  background: #bdc3c7;
}

.on {
  background: #364eba;
}

.on .toggle {
  animation: toggleOn 0.15s ease-out;
  left: calc(101% - 42px);
  background: #1c39bb;
}
.toggle svg * {
  fill: #00000050;
  transition: all 0.5s;
}
.on .toggle svg * {
  fill: #ffffff80;
  transition: all 0.5s;
}
.off .toggle {
  animation: toggleOff 0.15s ease-out;
  left: -1%;
}

/*loader*/
.spin-loader {
  border-radius: 80%;
  display: block;
  height: 30px;
  width: 30px;
  -webkit-animation: spin 0.675s linear 0s infinite normal;
  animation: spin 0.675s linear 0s infinite normal;
  background: #2c6ffe;
  position: absolute;
  left: 40px;
  top: 15px;
}
.spin-loader:before,
.spin-loader:after {
  content: '';
  display: block;
  position: absolute;
}
.spin-loader:before {
  border-radius: 0 90px 90px 0;
  height: 30px;
  width: 50%;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(#2c6ffe, #163d8f);
}
.spin-loader:after {
  border-radius: 80%;
  height: 20px;
  width: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #ffffff;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* end of loader */
