@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,600,400italic);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
#cvv {
    -moz-appearance: textfield;
}
#cvv::-webkit-inner-spin-button,
#cvv::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#card-number {
    -moz-appearance: textfield;
}
#card-number::-webkit-inner-spin-button,
#card-number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
body {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 30px;
    color: #777;
    background-color: #4CAF50 !important;
}
header {
    background: #302f2f;
    padding: 3% 4% 3%;
}
.title-container {
    background: #F1F1F1;
    padding: 2% 4% 2%;
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.img-limit-size {
    max-width: 100%;
    max-height: 100% 
}
.background-container {
    background: #F1F1F1;
    padding: 2% 4% 2%;
}
.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
#contact input[type="text"], #contact button[type="submit"] {
    font: 400 16px "Roboto", Helvetica, Arial, sans-serif;
}
#contact {
    background: #F9F9F9;
    padding: 25px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}
#contact input[type="text"] {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}
#contact input[type="text"]:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
}
#contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4CAF50;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}
#contact button[type="submit"]:hover {
    background: #43A047;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}
#contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
#contact input:focus {
    outline: 0;
    border: 1px solid #aaa;
}
input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 3px solid #ccc;
    display: inline-block;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 14px;
}
.alternative-label {
    margin-top: 8px;
}
.alternative-radio {
    margin-top: 18px;
}
/* hide input */
input.radio:empty {
    margin-left: -999px;
}
label {
padding-top: 4px;
}
/* style label */
input.radio:empty~label {
    position: relative;
    float: left;
    line-height: 2.5em;
    text-indent: 3.25em;
    margin-top: -8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
input.radio:empty~label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 2.5em;
    background: #D1D3D4;
    border-radius: 3px 0 0 3px;
}
/* toggle hover */
input.radio:hover:not(:checked)~label:before {
    content: '\2714';
    text-indent: .9em;
    color: #C2C2C2;
}
input.radio:hover:not(:checked)~label {
    color: #888;
}
/* toggle on */
input.radio:checked~label:before {
    content: '\2714';
    text-indent: .9em;
    color: #9CE2AE;
    background-color: #4DCB6D;
}
input.radio:checked~label {
    color: #777;
}
/* radio focus */
input.radio:focus~label:before {
    box-shadow: 0 0 0 3px #999;
}
#snackbar {
    visibility: hidden;
   /* Hidden by default. Visible on click */
    min-width: 250px;
   /* Set a default minimum width */
    margin-left: -125px;
   /* Divide value of min-width by 2 */
    background-color: #333;
   /* Black background color */
    color: #fff;
   /* White text color */
    text-align: center;
   /* Centered text */
    border-radius: 2px;
   /* Rounded borders */
    padding: 16px;
   /* Padding */
    position: fixed;
   /* Sit on top of the screen */
    z-index: 1;
   /* Add a z-index if needed */
    left: 50%;
   /* Center the snackbar */
    bottom: 30px;
   /* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
   /* Show the snackbar */
   /* Add animation: Take 0.5 seconds to fade in and out the snackbar. However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
   }
    to {
        bottom: 30px;
        opacity: 1;
   }
}
@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
   }
    to {
        bottom: 0;
        opacity: 0;
   }
}
.btn-ckeditor {
    margin-top: 8px;
    margin-left: 4px;
    position: absolute;
    z-index: 1000;
    background: #F8F8F8;
    color: #484848;
    padding-top: 5px;
    padding-bottom: 7px;
    margin-left: 9px;
    padding-left: 6px;
    padding-right: 7px;
    border: none;
    cursor: default;
    display: none;
}
.btn-ckeditor-active {
    margin-top: 8px;
    margin-left: 4px;
    position: absolute;
    z-index: 1000;
    background: #E0E0E0;
    color: #484848;
    padding-top: 4px;
    padding-bottom: 7px;
    margin-left: 9px;
    padding-left: 6px;
    padding-right: 6px;
    border: 1px solid #C0C0C0;
    cursor: default 
}
.error {
    font-size: 12px;
    color: #f35958;
    display: block;
}
.text-error {
    color: #f35958 !important;
}
input.error {
    border: 1px solid #f35958;
}
select.error {
    border: 1px solid #f35958;
}
#pageMessages {
    z-index: 9999;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 30%;
}
.alert {
    position: relative;
}
.alert .close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1em;
}
.alert .fa {
    margin-right: .3em;
}
.loading {
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    animation: backGround 5s ease infinite;
}
.loading .loadingWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading .loadingWrapper #loading {
    margin: auto;
    height: 100px;
    width: 100px;
    border: transparent;
    border-top: 3px solid #ffcb23;
    border-radius: 50%;
    animation: round 2s linear infinite;
}
.loading .loadingWrapper h1 {
    color: #555555;
    position: relative;
    margin: auto;
    top: 50%;
}
ul.features {
    list-style-type: none;
    text-align: left;
}
ul.features li {
    margin: 8px;
}
ul.features li .glyphicon {
    margin-right: 4px;
}
ul.features li .glyphicon-ok-circle {
    color: #6ab04c;
}
ul.features li .glyphicon-remove-circle {
    color: #eb4d4b;
}
.h1-modal-new {
    font-weight: 900;
    font-size: 2.3em;
    text-transform: uppercase;
}
@keyframes round {
    from {
        transform: rotate(0deg);
   }
    to {
        transform: rotate(360deg);
   }
}
@keyframes backGround {
    0% {
        background-color: #222222;
   }
    50% {
        background-color: #555555;
   }
    75% {
        background-color: #444444;
   }
    100% {
        background-color: #111111;
   }
}
.modal-content {
    width: 90%;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header div { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1em;
}
.modal-body {
    padding-inline: 2em !important;
}

.modal-footer {
    padding-inline: 2em !important;
}

.modal-body ul {
    margin-inline-start: 2em;
}

.input-style {
    display: block !important;
}

.title-size {
    font-size: 2.5em;
}

.close {
    font-size: 2.5em !important;
}

.modal-subtitle {
    color: #009c89;
}

.modal-subtitle label {
    font-weight: normal;
    display: inline;
    margin: 0;
    padding: 0;
    font-size: 1em;
}

.btn-light-blue {
    background-color: #59bfc1;
}

.text-white {
    color: white;
}

.card-type {
    display: flex;
    align-items: center;
}

.card-image {
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.card-image:hover {
    filter: grayscale(0%);
}

.card-image.selected {
    filter: grayscale(0%);
}

/* Estilos del modal */

    .modal-finish-payment .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
      }
      
      .modal-finish-payment .modal-content {
          margin:0 auto;
          margin-top: 5%;
          width: 25%;
          background-color: #fff;
          border-radius: 25px;
          padding: 1em;
          padding-inline-end: 2em;
          padding-inline-start: 2em;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          position: relative;
          text-align: center;
      }
      
      .modal-finish-payment .close {
        position: absolute;
        top: 5px;
        right: 10px;
        font-size: 2em;
        cursor: pointer;
        color: #333;
      }
      
      .modal-finish-payment .close:hover {
          color: #f00;
      }
      
      .modal-finish-payment .modal-title {
          font-size: 2em;
      }
    
      .modal-finish-payment .kiwilogo {
          max-width: 80%;
          height: auto;
      }
      
      .modal-finish-payment .modal-text {
          font-size: 1em;
          margin-bottom: 1px;
      }
      
      .modal-finish-payment .modal-note {
        display: block;
        font-style: italic;
        border-radius: 50px;
        color: #407faa;
        margin-top: 0;
      }
    
      .modal-finish-payment .close-btn {
          background-color: #407faa;
          border-radius: 25px;
          padding: 0.5em 1.2em;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          color: white;
          font-weight: bold;
          border: none;      
      }
  
/* Fin modal */


.low-emphasis {
	color: gray;
	font-size: 0.7em;
	margin-left: 0.2em;
}