.second-row {
    top: 10px;
}
@media (max-width: 766px) {
    .second-row {
        top: 55px;
    }
}


/* Style the tab */
.tab {
    overflow: hidden;
    /*border: 1px solid #ffa500;
    background-color: rgba(255,165,0,0.1);*/
    margin: 20px;
    margin-bottom: 0px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ffa500;
    color: white;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ffa500;
    color: white;
}

/* Style the tab content */
.tabcontent {
    display: none;
    margin: 0px 20px;
    padding: 0px 20px;
    border-style: solid;
    border-color: #ffa500;
}

.settings-field{
    padding: 30px;
}


hr {
    border: 0.5px solid grey;
    width: 100%;
  }