.casco_continue_popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1000;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.casco_continue_popup_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 5px;
}

.casco_continue_popup_content p {
  font-size: 18px;
  line-height: 36px;
  color: #374957;
  margin-bottom: 15px;
}
.casco_continue_popup_content .casco_continue_popup_buttons {
  display: flex;
  justify-content: space-between;
}

.casco_continue_popup_content .casco_continue_popup_buttons button {
  width: calc(50% - 10px);
  min-height: 46px;
  border-radius: 5px;
  border: 0;
  font-size: 16px;
}

.casco_continue_popup_content .casco_continue_popup_buttons button:first-child {
  background-color: #29CF51;
  color: #ffffff;
}

.casco_continue_popup_content .casco_continue_popup_buttons button:last-child {
  background-color: rgba(68, 176, 94, 0.15);
  color: #44b05e;
}

@media screen and (max-width: 599px) {
  .casco_continue_popup_content {
    width: calc(100% - 100px);
  }

  .casco_continue_popup_content .casco_continue_popup_buttons {
    flex-direction: column;
  }

  .casco_continue_popup_content .casco_continue_popup_buttons button {
    width: 100%;
  }

  .casco_continue_popup_content
    .casco_continue_popup_buttons
    button:not(:last-child) {
    margin-bottom: 10px;
  }
}
