/*@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto');*/
@import url('../../css/resetBrowser.css');
@import url('../../css/components/navigationBar.css');
@import url('../../css/components/container-Content.css');
@import url('../../css/components/image-Overview.css');
@import url('../../css/components/h1.css');
@import url('../../css/components/h2.css');
@import url('../../css/components/form.css');
@import url('../../css/components/table.css');
@import url('../../css/components/paragraphs.css');
@import url('../../css/components/footer.css');

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../fonts/raleway-v28-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/raleway-v28-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../fonts/raleway-v28-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fonts/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

#searchTherapist, #becomeTherapist, #showTherapist{
    width: 80%;
    margin: 50px 0;
    padding: 20px;
    background: #FEFEFE;
    border: 1px solid #EEE;
}

form{
    width: 100%;
}

p{
    margin: auto;
}

.containerInputsTherapists{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.containerInputsTherapists select{    
    height: 40px;
    font-size: 20px; 
    margin: auto;
    font-family: 'Raleway', sans-serif;
}

.container-Table{
	position: relative;
	max-height: 0px;
	transition: max-height 1s ease;
	overflow: auto;	
}

.button{
    width: 50%;
    margin: 40px 25%;
}

#appearImageDiv{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    background: rgba(153,153,153,0.9);
    transition: background 1s ease;
}

#container-TherapistsResults{
    position: fixed;
    left: 25vw;
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center; 
    color: #444;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 1.3; 
    background: rgba(255,255,255,1);
    border-radius: 5px;
    z-index: 5;
}

#container-TherapistsResults ul{
    margin: 20px 50px;
    padding: 0;
}

#container-TherapistsResults li{
    margin: 20px auto;
}

#container-ResultCaption{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#container-ResultCaption #span-Caption{
    display: block;
    margin-top: 40px;
    margin-left: 40px;
}

#container-ResultCaption #CloseImage{
    display: block;
    width: 1.5vw;
    height: 100%;
    z-index: 4;
    cursor: pointer;
}

#CloseImage:hover {
  filter: none;
  -webkit-filter: grayscale(50%);
}

#appearImage { 
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.4s;
    animation-name: zoom;
    animation-duration: 0.4s;
}

#container-DSVGO{
    margin: 40px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#container-DSVGO p{
    width: 90%;
    margin: 0;
    padding: 0;
}

#container-Captcha{
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

#container-Captcha p{
    width: 90%;
    text-align: center;
    padding: 0;
}

#container-Captcha #captcha{    
    width: 200px;
    height: 60px;
    margin: auto;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@media(max-width: 380px){

    p{
        margin: auto 10px;
    }

    #searchTherapist, #becomeTherapist, #showTherapist{
        width: 80%;
        border: 1px solid #AAA;
        border-top: 1px solid #EEE;
        border-bottom: 1px solid #EEE;
        background: #FCFCFC;
    }

    #form-SearchThera{
        width: 100%;
        border-top: 1px solid #EEE;
        border-bottom: 1px solid #EEE;
        background: #FCFCFC;
    }

    .container-InputsTherapists{
        margin: 10px auto;
        margin-top: 20px;        
    }

    .button{
        margin: 10px auto;
        margin-bottom: 20px;
    }

    .container-Table{
        width: 100%;
    }

    #container-TherapistsResults{
        width: 100%;
        height: 60vh;
        left: 0;
        top: 20vh;
        justify-content: flex-start;
        overflow: auto;
    }

    #container-ResultCaption{
        margin: 20px; 
        align-items: center;           
    }

    #container-ResultCaption #span-Caption{
        margin: 0 20px;
        font-size: 24px;
    }

    #container-ResultCaption #CloseImage{        
        width: 6vw;
        margin: 0 10px;
    }
}
