
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css?family=Nunito Sans");



.card{
    position:relative;
    height: 200px;
    margin: 120px;
    background-color: white;
    border-radius: 8px;
    margin-top:5px;
    box-shadow:rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 0px 0px -2px; 
    display: flex;
    flex-direction: row;
    margin-bottom:0px;
    padding-right: 20px;
    z-index: 1;

}

input
{
    width: 90%;
}

:root {

    --color-nav: rgba(61, 116, 108, 1);
    --color-nav: #4fa79e;
    --color-primery: rgba(194, 217, 238, 0.23);
    --button-color: rgba(30, 98, 160, 1);
}

body {
font-family: "Roboto";
}
.card img {
    height:150px;
    margin-left: 10px;
}
.card-body{
    margin:35px;
    width: 100%;
    margin-top:50px ;
    margin-right: 100px;
}

.card-profile   {
    width: 100%;
            display: flex;
            justify-content: space-between;
        margin-top:-20px;

}

.info_icon i
{
    color: #C2D9EE;
    cursor: pointer; user-select: none;
}

.info_icon{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}


.fa-regular {
    color: rgba(0,0,0,.1);
}

.fa-regular:hover {
color: rgba(0,0,0,.5);
cursor : pointer;
}


.card2{
   height:150px;
   padding:40px;
   margin: 120px;
   background-color: white;
   border-radius: 8px;
   margin-top:20px;
   box-shadow:rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 0px 0px -2px; 
   display: flex;
   flex-direction: row;
   margin-bottom:0px;
   /* border: 1px solid #1e61a01f;  */
}
.cv{
    width: 100%;    
    height: 100%;
    border: 1px solid #1e61a028;
}

textarea
{
    background-color: #dee1e2;
}

#ms-container
{
    background-color: rgba(0, 0, 0, 0.03);
    height: 100%;
    width: 100%;
    position: fixed; top:0;left: 0;
    z-index: 10;
}


#mes-box
{
    display: flex;
    flex-direction: column;
    position:absolute;
    background: rgba(194, 217, 238, 1);
    width: 35rem;
    height: 100px;
    left: 50%;
    margin-left: -17.5rem;
    top:50%;
    margin-top: -25px;
    text-align: center;
    justify-content: space-around;
    border-radius: 50px;   
    animation-name: popin;
    animation-duration: 0.5s; 
    user-select: none;
}

@keyframes popin {
    0% {top:70%;}
    100% {top:50%;}
}

@keyframes popinout {
    0% {top:60%;}
    25%{top:50%;}
    75%{top:50%}
    100% {top:60%;}
}


#mes-box input
{
    margin-left: 12.5%;
    width: 75%;
    border: none;
    border-radius: 5px;
}

#mes-box button
{
width: 30%;
display: inline-block;
background-color: var(--button-color);
color: white;
border: none;
border-radius: 5px;
}

	



@media (min-width: 1920px) {
    .card
    {
        height: 250px;
    }
    .card img {
        height:200px;
        vertical-align: middle;
    }
    h2{
        font-size: 38px;
    }
    h5{
        font-size: 15px;
    }

    .card2
    {
       height: 200px;
    }
    textarea
    {
        font-size: 20px;
    }
}


::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 25%);
}
::-webkit-scrollbar-thumb{
 border-radius: 5px;
 background: rgba(21, 51, 80, 1);

}
::-webkit-scrollbar-thumb:hover{
 background: rgb(29, 63, 95);

}