@font-face {
    font-family: 'Product Sans';
    src: url(/font/ProductSansRegular.ttf);
}

html * {
    font-family: "Product Sans", Verdana, Arial;
}

body {
    margin: 0;
    background-color: rgba(240,240,240,.3);
}

a{
  text-decoration: none;
}



/* +++++ BOOTSTRAP +++++ */
.alert-primary {
    color: #670400;
    background-color: #ffb2af;
    border-color: #ff9e9a;
}

.alert-primary hr {
    border-top-color: #ff8681;
}

.alert-primary .alert-link {
    color: #340200;
}

.badge-primary {
    color: #fff;
    background-color: #e20900;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #fff;
    background-color: #af0600;
}

.bg-primary {
    background-color: #e20900 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #af0600 !important;
}

.border-primary {
    border-color: #e20900 !important;
}

.btn-primary {
    color: #fff;
    background-color: #e20900;
    border-color: #e20900;
}

.btn-primary:hover {
    color: #fff;
    background-color: #be0700;
    border-color: #af0600;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(226, 9, 0, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #e20900;
    border-color: #e20900;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #af0600;
    border-color: #9f0600;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(226, 9, 0, 0.5);
}

.btn-outline-primary {
    color: #e20900;
    background-color: transparent;
    border-color: #e20900;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #e20900;
    border-color: #e20900;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(226, 9, 0, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #e20900;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #e20900;
    border-color: #e20900;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(226, 9, 0, 0.5);
}

.list-group-item-primary {
    color: #670400;
    background-color: #ff9e9a;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #670400;
    background-color: #ff8681;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #670400;
    border-color: #670400;
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #ff9e9a;
}

.table-hover .table-primary:hover {
    background-color: #ff8681;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #ff8681;
}

.text-primary {
    color: #e20900 !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #af0600 !important;
}
/* ----- BOOTSTRAP ----- */


/* +++++ MENU +++++ */
#hamburger-icon {
    margin-top: 1vh;
}

#hamburger-icon div {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 5px 0.3vw;
    border-radius: 20%;
}

#hamburger-icon div.update:nth-child(1) {
    transform: rotate(45deg) translateX(17%) translateY(180%)
}

#hamburger-icon div.update:nth-child(2) {
    opacity: 0
}

#hamburger-icon div.update:nth-child(3) {
    transform: rotate(135deg) translateX(-15%) translateY(160%)
}

#hamburger-icon div:nth-child(1) {
    background-color: black;
    transition: all .5s ease-in;
}

#hamburger-icon div:nth-child(2) {
    background-color: black;
    transition: all .1s ease-out;
    transition-delay: .25s;
}

#hamburger-icon div:nth-child(3) {
    background-color: black;
    transition: all .5s ease-in;
}

nav {
    height: 100vh;
    position: fixed;
    background-color: #ff3b3b;
    width: 7vw;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all .5s linear;
    z-index: 999;
}

nav.open {
    width: 20vw;
}

#menu-pages a {
    margin: 2vh 0;
    text-decoration: none;
    color: white;
}



#menu-pages ul {
    margin-top: 15vh;
    list-style: none;
    padding-left: 1em;
}

#menu-pages img {
    width: 1.2vw;
    height: auto;
    margin: 0 1vw 0 0;
}

#menu-pages span {
    transition: all .2s linear;
    transition-delay: .15s;
    opacity: 0;
    position: absolute;
    line-height: 1.2vw;
}

#menu-pages * {
    float: left;
}

#menu-pages li {
    text-align: center;
}
/* ----- MENU ----- */

/* +++++  FLASH MESSAGE +++++ */
#flash-message-block{
  transition: all 1s linear;
  position: fixed;

  z-index: 999;
}

#flash-message-block *{
  font-weight: bold;
}

#flash-message-block .flash-status-failure{
  background-color: rgb(108,4,0);
  color:white;
  margin: 0;
  padding: 1em 2em;
  border-radius: 5px;
}

#flash-message-block .flash-status-success{
  background-color: #008000de;
  color: black;
  margin: 0;
  padding: 1em 2em;
  border-radius: 5px;
}


/* ----- FLASH MESSAGE ----- */

/* +++++ CONTENT +++++ */
#page-content{
  margin-left: 7vw;
  min-height: 100vh;
}

/* ----- CONTENT ----- */

/* +++++  FORM +++++ */
  .form-error{
    border-radius: 5px;
    padding: .5em 1em;
    background-color: rgb(108,4,0);
    color: white;
  }

  .textarea-form{
    border-radius: 5px;
    border: 1px solid gray;
    box-shadow: 0px 0px 10px gray;
    }
/* ----- FORM ----- */


/* +++++  OTHER +++++ */
  .std-button{
    cursor: pointer;
    padding: .5em 1em;
    border-radius: 5px;
    border: 0px;
  }

  .std-button-positive{
    transition: all .3s linear;
    background-color: rgb(10 114 10);
    color: white;
  }

  .std-button-negative{
    transition: all .3s linear;
    background-color: rgb(108,4,0);
    color: white;
  }

  .std-button-neutral{
    transition: all .3s linear;
    background-color: #969600;
    color: white;
  }

  .std-button-positive:hover{
    background-color: #0ed50e;
    color: black;
  }

  .std-button-negative:hover{
    background-color: rgb(226,9,0);
    color: black;
  }

  .std-button-neutral:hover{
    background-color: #d7d700;
    color: black;
  }

  .std-input-search{
    font-size: 14px;
    border: 1px solid rgba(128,128,128,.15);
    border-radius: 5px;
    padding: 0 .5em;
    background-color: rgba(128,128,128,.2);
    margin-left: 1em;
    box-shadow: 0px 0px 10px rgba(128,128,128,.4)
  }


  .std-input-search img{
    height: 24px;
    width: 24px;
    margin-right: .5em;
  }

  .std-input-search input{
    margin: 7px 0;
    background-color: transparent;
    border: none;
  }

  .std-input-search input:focus-visible{
    outline: none;
  }

  .action-svg-icon{
    cursor: pointer;
  }

  .action-svg-icon *{
    transition: all .3s linear;
  }

  .action-svg-icon:hover *{
    fill: red;
  }
/* ----- OTHER ----- */

/* +++++ SHAPES +++++ */
.talkbubble-left-positive {
    width: 120px;
    height: 80px;
    background: green;
    position: relative;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  .talkbubble-left-positive:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 26px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-right: 26px solid green;
    border-bottom: 13px solid transparent;
  }
  .talkbubble-left-negative {
    width: 120px;
    height: 80px;
    background: red;
    position: relative;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  .talkbubble-left-negative:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 26px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-right: 26px solid red;
    border-bottom: 13px solid transparent;
  }

  .badge-ribbon-positive {
    position: relative;
    background: green;
    height: 100px;
    width: 100px;
    border-radius: 50px;
  }
  .badge-ribbon-positive:before,
  .badge-ribbon-positive:after {
    content: '';
    position: absolute;
    border-bottom: 70px solid green;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    top: 70px;
    left: -10px;
    transform: rotate(-140deg);
  }
  .badge-ribbon-positive:after {
    left: auto;
    right: -10px;
    transform: rotate(140deg);
  }

  .badge-ribbon-negative {
    position: relative;
    background: red;
    height: 100px;
    width: 100px;
    border-radius: 50px;
  }
  .badge-ribbon-negative:before,
  .badge-ribbon-negative:after {
    content: '';
    position: absolute;
    border-bottom: 70px solid red;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    top: 70px;
    left: -10px;
    transform: rotate(-140deg);
  }
  .badge-ribbon-negative:after {
    left: auto;
    right: -10px;
    transform: rotate(140deg);
  }

/* ----- SHAPES ----- */
