@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lexend+Deca:wght@100..900&display=swap');

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lexend-deca{
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }

body{
    margin: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    /* overflow-y: hidden; */
    /* overflow-x: hidden; */
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.content-container{
    /* border: 1px solid blue; */
    /* height: 40%; */
    max-width: 600px;
    overflow: hidden;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.logo{
    height: 40px;
}

.powered{
    height: 30px;
}

.powered p{
    font-size: 10px;
}


.thumbnail{
    height: 100px;
    border: 0px;
    border-radius: 50%;
    margin-top: 50px;
    /* border: 1px solid green; */
}

.thumbnail-container{
    /* border: 1px solid green; */
    height: 100px;
}

.btn-thumbnail{
    height: 80px;
    width: 80px;
    border: 0px;
    float: left;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid grey
}

.btn{
    background-color: rgba(0,0,0,0.7);
    height: 100px;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0);
    padding: 0;
    margin: 10px;
    color: white;
}

.profileBtns{
    /* border: 1px solid red; */
    margin-top: 20px;
    /* height: 460px; */
    /* overflow-y: scroll; */
}

.listRow{
    border: 1px solid green;
}

.btn-title{
    height: 25px;
    font-size: 20px;
    letter-spacing: 2px;
    /* border: 1px solid red; */
    margin: 10px;
    padding: 0px;
}

.btn-content{
    font-size: 12px;
    letter-spacing: 2px;
    /* border: 1px solid green; */
    margin: 0px;
    padding: 0px;
}

.text{ 
    /* border: 1px solid green; */
    color: white;
    height: 100px;
    padding: 0;
}

.btn1{
    /* border: 1px solid green; */
    height: 100px;
    width: 95%;
}

.btn:hover{
    background-color: rgba(0,0,0,0.8);
    border: 2px solid coral;
    transition: 0.2s;
}

.handle{
    font-weight: bold;
    background-color: rgba(255,255,255,0.7);
    color: black;
    font-size: 10px;
    padding: 5px;
    border-radius: 20px;
}

.handle:hover{
    transform: scale(2);
}

.socials{
    color: white;
    font-size: 30px;
    margin: 0px 10px;
    /* border: 1px solid red; */
}

.menuIcon{
    font-size: 40px;
    /* border: 1px solid red; */
    float: right;
    margin: 10px;
}

.menuPop{
    display: hidden;
    /* position: absolute; */
    font-size: 15px;
    color: black;
    height: 50px;
    width: 200px;
    background-color: white;
    text-align: left;
}

ul{
    list-style-type: none;
}

/* ANIMATIONS */

.btn1 {
    animation: box-move 1s infinite alternate-reverse;
    transition: transform 300ms;
  }
  
.btn1:hover {
    animation: box-move-anim 1s infinite alternate-reverse;
  }

  p{
    font-size: 20px;
    margin: 10px;
    color: whitesmoke;
  }

  form{
    width: 100%;
    /* border: 1px solid red; */
  }


/*CUSTOMS*/
.clientDetails{
    /* display: flex; */
    min-height: 30%;
    border: 1px solid grey;
    border-radius: 5px;
    background: rgba(0,0,0,0.7);
    max-width: 600px;
    padding: 0px;
  }

  
.clientDetails input, .clientDetails select{
    outline: none;
    border-radius: 4px;
    border: 2px solid rgba(211, 211, 211,0);
    font-size: 11px;
    padding: 4px;
    padding-left: 4px;
  }

  
.clientDetails input:hover, 
.clientDetails input:focus,  
.clientDetails select:hover, 
.clientDetails select:focus
{
    border-color: rgba(255, 127, 80,0.8);
    transition: 0.2s;
  }

  .clientDetails .fields{
    margin: 0 10px 0px 10px;
    width: 100%;
  }

  .pairs{
    display: flex;
    width: 100%;
    margin: 0 0 20px 0;
    /* border: 1px solid blue; */
    text-align: center;
  }

  .cellPhone{
    display: flex;
  }

  .countryCode{
    /* border: 1px solid red; */
    margin: 0 10px 0px 0px;
  } 
  .province{
    width: 100%;
    display: flex;
    /* border: 1px solid red; */
    /* margin: 0 10px 0px 0px; */
  } 
  
  .phoneCode{
    /* border: 1px solid red; */
    /* margin: 0 5px 0px 5px; */
    width: 100%;
  }


.signIn{
    color: rgb(99, 44, 24);
    outline: none;
    font-size: small;
    width: 150px;
    padding: 5px;
    border-color: rgba(0,0,0,0);
    border-radius: 5px;
    margin: 0px 0 20px 0;
    cursor: pointer;
}

.signIn:hover{
    color: coral;
    border-color: rgba(255, 127, 80,0.8);
    transition: 0.2s;
}
.signIn:focus{
    outline: none;
}
.reset{
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color: rgba(0,0,0,0);
    outline: none;
    font-size: small;
    width: 150px;
    padding: 5px;
    border-color: rgba(0,0,0,0);
    border-radius: 5px;
    margin: 0px 0 20px 0;
    cursor: pointer;
}

.reset:hover{
    color: coral;
    transition: 0.2s;
}
.reset:focus{
    outline: none;
    color: coral;
}
.signOut{
    color: white;
    background-color: coral;
    outline: none;
    font-size: small;
    width: 100px;
    padding: 5px;
    border-color: rgba(0,0,0,0);
    border-radius: 5px;
    margin: 0px 0 20px 0;
    cursor: pointer;
}

.signOut:hover{
    background-color: aliceblue;
    color: coral;
    border-color: white;
    transition: 0.2s;
}
.signOut:focus{
    outline: none;
}

.btnLink{
    font-weight: bold;
    color: white;
    background-color: rgba(0,0,0,0);
    outline: none;
    font-size: 20px;
    width: 30%;
    padding: 5px;
    border-color: rgba(0,200,0,0);
    border-radius: 5px;
    margin: 10px 10px 10px 10px;
    cursor: pointer;
    letter-spacing: 1px;
}

.btnLink:hover{
    background-color: rgba(0,0,0,0);
    color: coral;
    transition: 0.2s;
}
.btnLink:focus{
    outline: none;
    color: coral;
}

.hrCustom{
    width: 100%;
    height: 2px;
    background-color: rgba(240, 248, 255,0.5);
}
.format{
    padding: 15px;
    background-color: rgba(240, 248, 255,0.5);
    margin: 10px auto;
    color: aliceblue;
    width: 600px;
    border-radius: 5px;
    border: 1px solid grey;
    max-height: 95vh;
    overflow: none;
    overflow-y: scroll;
}

.enterErrMsg{
    background-color: white;
    font-size: 12px;
    color: red;
    font-weight: bolder;
    float: bottom;
}

@media(max-width: 600px){
    .format {
        width: 90%;
    }
}


  .errorDiv{
    padding: 0 0 0 0;
    width: 100%;
    margin-bottom: 10px;
    display: block;
    /* border: 1px solid coral; */
    height: 20px;
  }

  .passDiv{
    padding: 0 0 0 0;
    width: 100%;
    display: block;
    /* border: 1px solid coral; */
    height: 20px;
  }

  .errorDiv p{
    color: coral;
    /* border: 1px solid coral; */
    margin: 0 0 0 20px;
    font-size: 12px;
  }
  
  .support-line {
    font-size: 12px;
    text-align: center;
    margin-top: -5px;
    color: #555;
}

.support-line a {
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
}

.support-line a:hover {
    text-decoration: underline;
}
