@font-face {
    font-family: Roboto;
    font-weight: bold;
    src: url('../fonts/Roboto/Roboto-Bold.ttf');
}

@font-face {
    font-family: Roboto;
    font-weight: normal;
    src: url('../fonts/Roboto/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto;
    font-weight: 300;
    src: url('../fonts/Roboto/Roboto-Light.ttf');
}

@font-face {
    font-family: Roboto;
    font-weight: 200;
    src: url('../fonts/Roboto/Roboto-Thin.ttf');
}

html, body {
    font-family: Roboto;
    padding: 0;
}

.nopadding {
    padding: 0;
}

.bold {
    font-weight: bold;
}

.regular {
    font-weight: normal;
}

.light {
    font-weight: 300;
}

.thin {
    font-weight: 200;
}

.gray {
    color: gray;
}

.green {
    color: #6ab756;
}

.fox {
    color: rgb(242, 160, 77);
}

.fox-bg {
    background-color: rgb(242, 160, 77);
}

.muted {
    opacity: .5;
}

a.black {
    color: black;
}

a.white {
    color: white;
}

.headline {
    position: relative;
}

.headline:after {
    left: 50%;
    margin-left: -40px;
    background: rgb(242, 160, 77);
    content: '';
    position: absolute;
    top: 130%;
    width: 80px;
    height: 4px;
}

.header {
    margin: 50px 0;
}

.subheader {
    margin: 15px 0;
}

.subtitle {
    position: relative;
    top: -20px;
}

.shadow, .hover-shadow:hover {
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
}

.appointment-btn {
    padding: 10px 25px;
    background-color: rgb(242, 160, 77);
    color: white;
    font-size: 16px;
}

.appointment-btn:hover {
    color: white;
    background-color: rgb(224, 143, 67);

    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
}

.page-prices-content {
    margin-bottom: 100px;
}

.accordion {
    margin-bottom: 25px;
}

.accordion-button:focus {
    box-shadow: none;
}

.page-about h1 {
    font-weight: 300;
}

.page-about {
    margin: 50px 0;
}

.page-about-header {
    margin-bottom: 60px;
}


#admin-menu {
    padding: 5px 10px;
    background-color: #575757;
}

#admin-menu a {
    color: white;
    margin-right: 15px;
}