*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: helvetica;
    height: 100vh;
    width: 100%;
    background-image: url(slider-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

.tbar {
    color: white;
    font-size: 12px;
    display: flex;
    padding: 5px;
    justify-content: flex-end;
    place-items: center;
}

.tbar > i, .tbar > .time {
    padding-right: 8px;
}

.percent {
    padding-right: 5px;
}

.content {
    width: 100%;
    height: calc(100vh - 23.6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pic {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-image: url(logo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: grey;
    border: none;
}

/* had to do this to center name "Andrew" */
.wrap {
    display: flex;
    font-weight: lighter;
    font-size: 18px;
}

.name {
    margin: 20px auto;
    font-family: 'Heebo', sans-serif;
    letter-spacing: 1px;
}

#password {
    font-size: 17px;
    color: white;
    background-color: black;
    border: none;
    border-radius: 5px;
    height: 30px;
    padding: 10px;

}

#password::placeholder {
    font-size: 14px;
    vertical-align: center;
    color: rgb(170, 170, 170);
}

input:focus {
    outline: none;
}

.arrow {
    width: 25px;
    height: 25px;
    font-size: 14px;
    border-radius: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: none;
    color: rgba(0, 0, 0, .7);
    padding: 3px;
    margin-left: 5px;
}

button:focus {
    outline: none;
}

button:active {
    border: none;
    background-color: hsla(0, 0%, 75%, 90%);
}

.x {
    width: 25px;
    height: 25px;
    background-color: hsla(0, 0%, 45%, 90%);
    color: white;
    font-size: 15px;
    border-radius: 100%;
    margin: 10px auto;
}

.chrome {
    width: 100%;
    margin: 0;
    min-height: calc(100vh - 24px);
    background-color: white;
    display: none;
}

.toolbar {
    background-color: hsla(0, 0%, 85%, 90%);
    display: flex;
    flex-direction: row;
    padding: 10px 10px 0 10px;
    border-radius: 5px 5px 0 0;
}

.toolbar > div > i {
    font-size: 12px;
    padding: 1px;
}

.tab {
    background-color: white;
    color: black;
    font-size: 10px;
    width: 120px;
    height: 25px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.close {
    margin-left: 45px;
}

.fa-lock {
    margin: 0 5px;
}

#red {
    color: #DE4646;
}

#yellow {
    color: #E8C907;
}

#green {
    color: #32E406;
}

.pointers > i {
    color: grey;
    padding: 0 5px;
    font-size: 12px;
}

.search {
    border-radius: 30px;
    font-size: 14px;
    background-color: hsla(0, 0%, 85%, 90%);
    color: black;
    padding-left: 20px;
    padding: 5px 0 5px 20px;
    height: 15px;
    width: 75%;
    margin-right: 50px;
}

.fa-redo-alt {
    margin-right: 10px;
}

.fa-arrow-left {
    margin-left: 10px;
}

main {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    color: black;
    padding-bottom: 100px;
}

.words {
    text-align: left;
    font-size: 16px;
}

/************************** acc */
.call-cta {
    background: #00ad5f;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 14px 45px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-radius: 30px;
    text-decoration: none;
}

.call-cta:hover {
    background: #353240;
    color: #fff;
}

.logo-top {
    width: 350px;
    height: auto;
}

/**** FAQ ***/
.faq-content {
    max-width: 70%;
    margin: 70px auto;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 25px 50px 25px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-bottom: 1px solid #b0acac;
    position: relative;
    font-weight: bold;
    line-height: 1.5;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: left;
    font-size: 15px;
}

.panel p:first-child {
    margin-top: 30px;
}

.panel p:last-child {
    margin-bottom: 30px;
}

.accordion:after {
    content: '+';
    font-size: 20px;
    color: #777;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 1.5;
}

.active:after {
    content: "-";
    font-size: 25px;
    line-height: 1;
    top: 17px;
}

@media (max-width: 1050px) {
    .faq-content {
        max-width: 100%;
        margin: 50px auto;
    }
}

@media (max-width: 700px) {
    main {
        width: 100%;
        padding: 0 20px 100px 20px;
    }
    .logo-top {
        width: 250px;
        height: auto;
    }
    .panel {
        font-size: 14px;
    }
}