/* font-family: 'DM Mono', monospace; */
/* font-family: 'Roboto Condensed', sans-serif; */


*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
html{
    background: rgb(245, 245, 245);
}
.cover{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
    margin-bottom: 80px;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(43, 43, 43);
    text-transform: uppercase;
}
.title-line-1{
    font-size: 10vw;
    font-weight: 300;
    line-height: 1.2em;
}
.title-line-2{
    font-size: 6.5vw;
    line-height: 0.9em;
}
.nav-cover{
    width: 90%;
    margin: 0 auto;

}
.nav-cover ul{
    margin: 10px auto 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 18px;
    flex-wrap: wrap;
    /* border: 1px solid red; */
}
.nav-cover ul li {
    list-style: none;
    display: inline;
    opacity: 0;
}
.nav-cover li a {
    display: block;
    text-decoration: none;
    margin: 20px 30px;
    color: rgb(43, 43, 43);
    /* color: rgb(102, 102, 102); */
    /* color: black; */
    letter-spacing: 0.1em;
    transition: color 0.5s;
    border-bottom: 2px;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(0,0,0,0);
    transition: border 0.5s;
}
.nav-cover li a:hover{
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 4px;
}

nav {
    height: 20px;
    padding-top: 20px;
    padding-left: 40px;
    margin-bottom: 50px;
    margin-top: 10px;
    /* border: 1px solid red; */
}
nav li.home a{
    font-size: 16px;
    /* color: red; */
    color: rgb(181, 181, 181);
    transition: color 0.5s;
}
nav li.home a:hover{
    font-size: 16px;
    /* color: rgb(126, 0, 0); */
    color: rgb(82, 82, 82);
    border-bottom: 2px solid rgba(0,0,0,0);
}
nav li {
    list-style: none;
}
nav li a {
    display: block;
    float: left;
    text-decoration: none;
    margin-right: 30px;
    color: rgb(102, 102, 102);
    letter-spacing: 0.1em;
    font-size: 12px;
    transition: color 0.5s;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(0,0,0,0);
    transition: border 0.5s ;
}
nav li a:hover{
    color: black;
    border-bottom: 2px solid black;
}
nav li a.active {
    color: black;
    border-bottom: 2px solid black;
}
body {
    font-family: 'DM Mono', monospace;
}

.container {
    width: 280px;
    margin: 0 auto 0 auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    /* flex-grow: 1; */
    /* align-items: center; */
    /* border: 1px solid plum; */
}
.centered {
    align-items: center;
    margin: 0 auto;
    /* border: 1px solid red; */
}
.container-wider-results {
    width: 480px;
    margin: 0 auto 0 auto;
    padding-top: 40px;
    text-align: center;
}

.question {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 500;
}

.row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-left: 0px;
    /* border: 1px solid blue; */

}

.field {
    display: flex;
    flex-direction: column;
    /* flex-grow: 1; */
    padding-right: 20px;
    /* border: 1px solid red; */
}
label {
    font-size: 10px;
    font-weight: 300;
    color: rgb(102, 102, 102);
}
.checkbox label{
    font-size: 14px;
    font-weight: 400;
    color: black;
    /* border: 1px solid red; */
    margin-top: -1px;
}
.checkbox label:nth-child(1){
    margin-top: 8px;
}

.checkbox select{
    font-size: 12px;
    margin-left: 18px;
    padding-bottom: 0px;
}


select{
    -webkit-appearance: none;
    -moz-appearance: none;
    flex-grow: 1;
    width: calc(100% + 30px);
    font-size: 15px;
    line-height: 22px;
    letter-spacing: .5px;
    outline: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(196, 196, 196);
    padding: 3px 3px;
    margin: 0;
    background-color: transparent;
    background-image: url("../img/selectArrow.svg");
    background-repeat: no-repeat, repeat;
    /* background-position: right .7em top 50%, 0 0; */
    background-position: right .5em;
    background-size: 14px auto;
    /* transition: border linear .1s; */
}
select:disabled{
    color: rgb(196, 196, 196);
    background-image: url("../img/selectArrow-disabled.svg");
}
select:disabled:hover{
    border-bottom: 1px solid rgb(196, 196, 196);
}

select:focus{
    border-bottom: 1px solid #67d987;
}

select:hover{
    border-bottom: 1px solid #67d987;

}
.btn-main {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 30px;
    background: none;
    border-radius: 20px;
    letter-spacing: 0.1em;
    margin: 10px auto 0 auto;
    outline: none;
    box-shadow: 0px 0px 0px #c4c4c4;
    -webkit-box-shadow: 0px 0px 0px #c4c4c4;
    transition: box-shadow .5s, background-color 0.5s ;
    border: 1px solid #c4c4c4;
}
.btn-main:hover {
    background: white;
    box-shadow: 1px 1px 4px #c4c4c4;
    -webkit-box-shadow: 1px 1px 4px #c4c4c4;
}

#btn-copy{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    background-color: rgb(157, 215, 152);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 8px;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none;
    transition: background-color 0.5s, color 0.3s 1s;
    opacity: 0;
    margin: 0 auto 30px auto;
    transition: opacity 0.5s ease-out 0.4s, background-color 0.3s, color 0.3s;
}
#btn-copy:hover{
    background-color: rgb(220, 220, 220);
}

#copy-list li,
#company-list li {
    font-size: 13px;
    line-height: 1.5em;
    margin-bottom: 20px;
    list-style: none;
    /* border: 1px solid red; */
}

#dates-list li,
#name-list li,
#phones-list li,
#email-list li,
#address-list li {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 10px;
    /* border: 1px solid red; */
    list-style: none;
}


.result {
    margin: 30px 0 100px 0;
    /* border: 1px solid pink; */
    text-align: center;
}



.copy-container {
    position: fixed;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background: rgba(1, 9, 4, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(190, 254, 208);
    opacity: 0;
    pointer-events: none;
}
.copy-message{
    transform: translateY(-80px);
    opacity: 0;
}

@media only screen and (max-width: 620px) {
    .cover{
        margin-top: 80px;
        margin-bottom: 50px;
    }
    .title-line-1{
        line-height: 1.5em;
    }
    .nav-cover ul {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .nav-cover li a {
        display: block;
        text-decoration: none;
        margin: 12px auto;
    }
    nav ul {
        height: 50px;
        display: flex;
        flex-direction: column;
        /* border: 1px solid red; */
        justify-content: space-between;
    }
    nav ul div {
        display: flex;
        justify-content: center;
        /* border: 1px solid blue; */
    }
    .container-wider-results {
        width: 90%;
    }
  }

