.page{
  padding: 40px;
}

.fade-enter-active, .fade-enter-to {
  transition: opacity 0.5s
}
.fade-enter, .fade-leave-active, .fade-leave-to /* .fade-leave-active in <2.1.8 */ {
  opacity: 0
}

.spinner{
  display: flex;
  justify-content: center;
}

.tips{
  margin-left: 80px;
}

.submit{
  margin-top: 30px;
  margin-bottom: 30px;
}

.liste{
  margin-top: 30px;
}

.listeItem{
  min-height: 35px;
  display: flex;
  margin-bottom: 15px;
  align-items: center;

  &:nth-child(odd){
    background-color: $grey-lighter;
  }

  .intitule{ flex: 1; }

  .actions{
    .icon{
      cursor: pointer;
      display: inline-block;

      &:not(:last-child){
        margin-right: 8px;
      }
    }
  }
}

.content .nav{
  display: flex;
  align-items: flex-start;

  h1{
    margin: 0;
    padding: 0;
  }
}

.back-arrow{
  font-size: 2.5rem;
  line-height: 1.8rem;
  cursor: pointer;
  display: inline-block;
  width: 60px;
  height: 36px;
  padding-left: 10px;
  transition: all 0.3s ease;
  margin-right: 15px;
  background-color: #FFF;

  &:hover{
    color: #394855;
    background-color: #EEE;
  }
}


@mixin thumbPageContent{
  display: flex;
  align-items: center;
  justify-content: space-between;

  &__text{
    flex: 1;
  }

  &__image{
    width: 236px;
    height: 236px;
    margin-left: 20px;
    position: relative;

    .close{
      position: absolute;
      background-color: $red;
      top: 5px;
      right: 5px;
      height: 30px;
      width: 30px;
      border-radius: 30px;
      z-index: 100;
      display: flex;
      justify-content: center;
      align-items: center;
      color: $grey-lighter;
      cursor: pointer;
    }

    img{
      display: block;
      width: 100%;
    }
  }
}

@media screen and (max-width: 1024px){
 .tips{
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    img{
      margin-bottom: 20px;
    }
  }
}
