/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.wait-cursor  {
    cursor: wait !important;
}  

.linea {
    border:1px lightgray solid;
    width: 90%;
    max-width: 380px;
    margin-top:0px;
    margin-bottom:5px;
}

.titulo {
    color: rgb(2,95,174);
    font-size: 22px;
    margin-bottom: 15px;
}   

ul {
    margin: 0;
    padding: 0;
}

.languageContainer {
    display: flex;
    overflow: visible;
    font-size: small;
    margin-bottom: 4px;
    min-width: 200px;
    
}

#play {
    width:28px;
    height:28px;
    margin-right: -100px;
}

#play2 {
    right:30px;
    bottom:35px;
    position: absolute;
    width:28px;
    height:28px;
    bottom: 35px;
    margin-right:-52px;
}

.container {
    position:relative;
}

.container2 {
    position:relative;
    margin-top:10px;    
}

.left-button {
    position:absolute;
    left:-50px;
    top:5px;
}

.right-button {
    position:absolute;
    left:80px;
    top:5.5px;    
}

.center-button {
    position:absolute;
    left:40px;
    top:10px;
}

.center-button2 {
    position: relative;
    right:20px;
}

.languageContainer button {
    border: 1px solid whitesmoke;
    border-radius: 8px;
    background: whitesmoke;
    cursor: pointer;
    margin-top: 0;
    margin: 5px;
    color: #7b7b7b;
    font-weight: bold;
    width:30px;
    height:25px;
}

.languageContainer button:hover, .languageContainer button:active, .languageContainer button:focus {
    border-color: rgb(2,95,174);
}

.content-input input,
.content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content-select select::-ms-expand {
    display: none;
}

.content-select {
    margin-top:10px;
    max-width: 380px;
    min-width:200px;
    position: relative;
    width: 90%;
    margin-bottom: 10px;
}

.content-select select {
    font-weight: bold;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 7px 10px;
    height: 35px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: white;
    font-size: 1em;
    color: #7b7b7b;
    font-family: 'Quicksand', sans-serif;
    border: 1px solid;
    border-radius: 8px;
    position: relative;
    transition: all 0.25s ease;
}

.content-select select:hover, .content-select select:active, .content-select select:focus {
    outline-color: rgb(2,95,174);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 12px rgb(2,95,174,.6);
    border-color: rgb(2,95,174);
}

.content-select i {
    position: absolute;
    right: 20px;
    top: calc(50% - 10px);
    width: 8px;
    height: 8px;
    display: block;
    border-left: 4px solid #7b7b7b;
    border-bottom: 4px solid #7b7b7b;
    transform: rotate(-45deg); /* Giramos el cuadrado */
    transition: all 0.25s ease;
}

.content-select:hover i {
    margin-top: 3px;
}

.content-button button {
    appearance: none;
}

.content-button button {
    width: 85px;
    min-width:85px;
    height: 35px;
    border-color: whitesmoke;
    border-radius: 8px;
    margin-right: 10px;
    border: 1px solid;
    color: white;
    font-size: 1em;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    background-color: rgb(2,95,174);
}

.content-button button:hover {
    outline-color: rgb(2,95,174);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 12px rgb(2,95,174,.6);
    border-color: rgb(2,95,174);
    cursor: pointer;
}

#changeLang {
    background-color: transparent;
    padding: 5px;
    border-radius: 8px;
    border-style: hidden;
    align-items: center;
    margin-left:25px;
}

#changeLang:hover {
    cursor: pointer;
}

#idioma {
    font-weight: bold;
    font-size: 1em;
    font-family: 'Quicksand', sans-serif;
    color: #7b7b7b;
}

#lblApi {
    font-weight: bold;
    font-size: 1em;
    font-family: 'Quicksand', sans-serif;
    color: #7b7b7b;
    margin-top:15px;
}

#txtApi {
    margin-top: 5px;
    max-width: 360px;   
    min-width: 180px;
    height: 15px;
    padding: 7px 10px;
    border-radius: 0;
    color: #7b7b7b;
    border: 1px solid;
    border-radius: 8px;
    width: 85%;
}

#txtApi:focus {
    outline-color: rgb(2,95,174);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 12px rgb(2,95,174,.6);
}

#inputText {
    width: 90%;
    max-width: 380px;
    min-width: 200px;
    height: 165px;
    margin-top: 25px;
    margin-bottom: 5px;
    border-radius: 8px;
    text-indent: 8px;
    resize: none;
    border: 1px solid;
    color: #7b7b7b;
}

#inputText::placeholder {
    font-size: 1em;
    text-indent: 8px;
}

#outputText::placeholder {
    font-size: 1em;
    text-indent: 8px;
}

#outputText {
    background-color: whitesmoke;
    max-width: 380px;
    min-width: 200px;
    width: 90%;
    height: 165px;
    margin-top: 55px;
    margin-bottom:0;
    border-radius: 8px;
    text-indent: 8px;
    resize: none;
    border: 1px solid;
    color: #7b7b7b;
}

#imgSwap {
    transform: rotate(90deg);
}

#inputAudio{
    background-color: transparent;
    border-radius: 8px;
    border-style: hidden;
    cursor: pointer;
}

#outputAudio {
    background-color: transparent;
    border-radius: 8px;
    border-style: hidden;
    cursor: pointer;
    padding:15px;
    margin-left:65px;
}

#btnCopiar {
    background-color: transparent;
    border-style: hidden;
    cursor: pointer;
    border-radius: 8px;
    position:relative !important;
    right:60px;
    bottom:100px;
}

#inputText:focus, #outputText:focus {
    outline-color: rgb(2,95,174);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 12px rgb(2,95,174,.6);
}

.ms-welcome__header {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

.ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
    padding: 10px 20px;
}

.ms-welcome__main > h2 {
    width: 100%;
    text-align: center;
}

.ms-welcome__features {
    list-style-type: none;
    margin-top: 20px;
}

.ms-welcome__features.ms-List .ms-ListItem {
    padding-bottom: 20px;
    display: -webkit-flex;
    display: flex;
}

.ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
    margin-right: 10px;
}

.ms-welcome__action.ms-Button--hero {
    margin-top: 30px;
}

.ms-Button.ms-Button--hero .ms-Button-label {
    color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label {
    color: #005a9e;
    cursor: pointer;
}

b {
    font-weight: bold;
}
