/* Variables */
:root{
    --purple: #AB91FA;
    --yellow: #FFF068;
    --red: #FF5656;
    --light-blue: #47E8FF;
    --dim-blue: #588AC7;
    --grey: #F5F5F5;
    --dim-grey: #747474;
    --black: #000000;
}

/* Remove number input arrows */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Global variables */

a:hover {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a {
  color: inherit;
}

body{
    background-color: var(--grey);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

p {
  word-wrap: break-word !important;
}

#main{
    margin-bottom: 100px;
}

.regular-size{
    font-size: 18px;
    font-weight: 400;
}

.section-title{
  color: var(--dim-grey);
  font-size: 26px;
  font-weight: 500;
}

.edit-link a{
  color: var(--light-blue);
  font-size: 26px;
}
.edit-link a:hover{
  text-decoration: none;
}

.edit-regular-link a{
  color: var(--light-blue);
}
.edit-regular-link a:hover{
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .regular-size{
      font-size: 18px;
  }
  .title-size{
      font-size: 20px;
  }
  .section-title{
    font-size: 20px;
  }
  .edit-link a{
    font-size: 20px;
  }

  .bottom-div-container .col-sm-6{
    width: 50%;
  }
}

@media only screen and (min-width: 1025px) {
  .form-containter{
    padding-right: 20rem;
    padding-left: 20rem;
  }
}

@media only screen and (min-width: 1024px) {
  .form-containter{
    padding-right: 10rem;
    padding-left: 10rem;
  }
}


.bottom-div {
  bottom: 0;
  position: fixed;
  padding-right: 3rem;
  padding-bottom: 1.8rem;
  background-color: var(--grey);
  z-index: 99;
}

.bottom-div-container {
  position: fixed;
  bottom: 0;
  padding-bottom: 1.8rem;
  background-color: var(--grey);
  z-index: 99;
  width: 100%;
}

.button-desactivar {
  padding-right: 1.5rem;
  font-size: 1.5em;
  font-weight: 500;
  border-bottom: 4px solid;
  border-bottom-color: var(--red);
  color: var(--red);
}

.button-guardar {
  padding-left: 1.5rem;
  font-size: 1.5em;
  font-weight: 500;
  border-bottom: 4px solid;
  border-bottom-color: var(--purple);
  color: var(--purple);
}

.bottom-div a{
  font-size: 1.5em;
  font-weight: 500;
  border-bottom: 4px solid;
  border-bottom-color: var(--purple);
  color: var(--purple);
}

.bottom-div a:hover{
  cursor: pointer;
  text-decoration: none;
  border-bottom: 5px solid;
}

/* Override Materialize */

.jumbotron {
  margin-bottom: 1rem !important;
}


/* Elements */

.custom-card{
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: white;
    border-radius: 8px;
}

.custom-card-title{
    color: var(--red);
    font-weight: 500;
}

.blue-text{
    color: var(--dim-blue);
}





/* Navbar Button */
.hamburger {
  position: relative;
  top: 20px;  
  z-index: 999;
  display: block;
  width: 45px;
  height: 45px;
  margin-left: 15px;
  background: transparent;
  border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 28px;
  color: var(--red);
  line-height: 70px;
  border-radius: 200px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 7px;
  width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: var(--red);
  border-radius: 200px;
}
.hamburger.is-closed .hamb-top { 
  top: 5px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -4px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  background-color: var(--red);
  border-radius: 200px;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.page-title{
  position: relative;
  top: -23px;
  left: 70px;
  font-size: 30px;
  font-weight: 600;
  z-index: 999;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: var(--grey);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 80px;
    border-right: lightgray;
    border-right-width: 0.5px;
    border-right-style: solid;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    transition: 0.3s;
    font-weight: 500;
    color: dimgray;
}

.sidenav a:hover {
    color: black;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

*[data-href] {
  cursor: pointer;
}

/* Login CSS */

.login-container{
  margin-top: 10%;
  padding: 20px;
  padding-left: 300px;
  padding-right: 300px;
}

.login-title{
  font-weight: 600;
  color: var(--red);
  margin-bottom: 50px;
}

.login-container a{
  color: var(--light-blue);
}

button {
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
  outline: inherit;
}

.disable-button {
  border-bottom: 4px solid;
  border-color: var(--red);
}

.black-underline-button {
  border-bottom: 4px solid;
  border-color: var(--black);
}

.login-button{
  font-size: 1.5em;
  font-weight: 500;
  border-bottom: 4px solid;
  border-bottom-color: var(--dim-blue);
  color: var(--dim-blue);

}

@media only screen and (max-width: 768px) {
  .login-container{
    margin-top: 25%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.delete-this{
  text-decoration: underline;
}

.delete-this:hover{
  cursor: pointer;
}

