@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Rubik", Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
    transition: all 0.5s ease;
}

body {
    background-image: url("../images/fondo-ok2.svg");
    background-size: cover;
}

main, .espaciado-superior {
  margin-top: 160px;
}

.columna-completa {
    width: 1200px;
    margin: 0 auto;
}

.header-icon {
    width: 25px;
    height: 25px;
    margin: 0 10px;
}

.cont-icon-header {
    position: relative;
    cursor: pointer;
}

.btn {
  padding: 5px 15px;
  font-size: 18px;
  font-weight: 600;
  margin: 5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/*////// CHECKBOK ////////*/

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: auto 0;
    color: #474747;
    margin: 5px 0;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #dbdbdb;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #FF3F67;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /*///// CHECK COLOR //////*/

  .check-color {
    position: relative;
    height: 30px;
    width: 30px;
    margin: 5px;
  }
  
  .check-color label {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    background-color: #f72414;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 4px 5px #707070;
    cursor: pointer;
    transition: 0.2s ease transform, 0.2s ease background-color,
      0.2s ease box-shadow;
    overflow: hidden;
    z-index: 1;
  }
  
  .check-color label:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    background-color: #fff;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: inset 0 7px 10px #a3a3a3;
    transition: 0.2s ease width, 0.2s ease height;
  }
  
  .check-color label:hover:before {
    width: 7px;
    height: 7px;
    /*box-shadow: inset 0 7px 10px #ff9d96;*/
  }
  
  .check-color label:active {
    transform: translateY(-50%) scale(0.9);
  }
  