@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
/*  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;*/
  font-size: 1.5rem;
  box-sizing: border-box;
  color: #242526;
}

.questionP{
    width=100%;
    padding:30px;
}

.questionI{
    width=100%;
    background-color: #ebebeb;
    padding:30px;
}

.card{
  max-width: 150px;
  height: auto;
}

.card-hidden:hover{
  box-shadow: 0 0 6px 6px rgba(0, 140, 186, 0.5);
  cursor:url(/img/eye.cur),auto
}

.card-div{
  padding: 10px;
  display:inline-block;
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
}

.icone-petit{
    width: 24px;
    height: auto;
    cursor: pointer;
    margin: 10px;
}

.icone{
    width: 32px;
    height: auto;
    display:inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.content{
  place-content: center;
  position: absolute;
//  top: 50px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
//  padding: 0 30px;
}

.titre{
  font-size: 25px;
  font-weight: 600;
  padding-top:80px;
  text-align:center;
}

.size2{
  font-size: 25px;
  font-weight: 400;
  text-align:center;
}

.newQuote{
    background-color: #ebebeb;
    border: 2px solid black;
    width:95%;
    margin: auto;
    padding-bottom: 10px;
    position: relative;
    display:none;
    border-radius: 10px;
}
/****************/
/*** INPUT 1 ***/
/**************/
.input1_group {
  position: relative;
  padding: 15px 0 0;
  margin: 10px auto 0;
  display:inline-block;
}

.input1 {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--color2);
  outline: 0;
  font-size: 1.3rem;
  color: var(--color2);
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;

  &::placeholder {
    color: transparent;
  }

  &:placeholder-shown ~ .input1_label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
  }
}

.input1_label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: var(--color2);
}

.input1:focus {
  ~ .input1_label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--color2);
    font-weight:700;
  }
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, var(--color2),var(--color1));
  border-image-slice: 1;
}

.input1medium{
    width:30%
}

.input1large{
    width:90%
}


.light{
    --color1: #9b9b9b;
    --color2: #fff;
}

.dark{
    --color1: #fff;
    --color2: #000;
}

/* reset input */
.input1{
  &:required,&:invalid { box-shadow:none; }
}

/*************/
/* Select 1 */
/***********/
.select-box {
  cursor: pointer;
  position : relative;
  max-width:  20em;
  margin: 5em auto 1em;
  text-align: left;
  width: 100%;
}


.select,
.label {
  color: #414141;
  display: block;
  font: 400 17px/2em 'Source Sans Pro', sans-serif;
  text-align:left;
}

.select {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 5px 0;
  height: 40px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  background: none transparent;
  border: 0 none;
}
.select-box1 {
  background: #ececec;
}

.label {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
}
.open .label::after {
   content: "▲";
}
.label::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  border-left: 5px solid #fff;
}

/************/
/** POPUP **/
/**********/

// Variables

// Mixins
@mixin absCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.pure {
    color: #e75480;
    text-decoration: underline;
    font-weight: 600;
}

.button {
    background-color: #242526;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 100px;
    margin-top: 25px;
    cursor: pointer;
}

.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(black, .8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    box-sizing: border-box;

    // The url changes when the anchor is triggered and CSS can watch that
    &:target {
        opacity: 1;
        visibility: visible;
    }



    &__text {
        font-size: 1.4rem;
        margin-bottom: 4rem;
    }
}

.popup__content {
    @include absCenter;

    width: 75%;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2rem 4rem rgba(black, .2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}
