/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**/

b { font-weight: 600;}

strong { font-weight: bold;}
.center { text-align: center; }
.centered { margin-left:auto!important; margin-right:auto!important; }
.showOnMobile {    display: none!important;}
.hidden { display:none; }
.nowrap {    white-space: nowrap;}
.flex, .df {display: flex!important;}
.jc-c {justify-content: center;}
.jc-sa {justify-content: space-around;}
.ai-c {align-items: center;}

.g-20 {gap:20px!important;}
.mt-10 {margin-top:10px!important;}
.mt-20 {margin-top:20px!important;}
.mt-40 {margin-top:40px!important;}
.mb-10 {margin-bottom:10px!important;}
.mb-20 {margin-bottom:20px!important;}
.mb-40 {margin-bottom:40px!important;}

.mh {min-height: 500px;}

/**/

* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    font-size: 13px;
    min-width: 320px;
    background: #f4f4f4;
}

.site-header {
    background: #fff;
}
.site-branding {
    display: flex;
    height: 110px;
    justify-content: center;
    align-items: center;
}

.title {
    padding: 0 10px;
    font-size: 34px;
    line-height: 30px;
    text-align: center;
}
.Sans-Serif .title {
    font-family: 'Roboto', sans-serif;
}
.Sans-Serif .subtitle {
    font-family: 'Roboto', sans-serif;
}

.Cursive .title {
    font-family: 'Dynalight', cursive;
}
.Cursive .subtitle {
    font-family: 'Convergence', sans-serif;
}

h2 {
    font-size: 1.4em;
    margin-bottom: 20px
}

img {
    max-width: 100%;
}

.content {
    padding: 20px;
}

.content-layout {
    max-width: 1280px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}
.form-group label {
    font-weight: 600;
    display: block;
    margin: 0 0 5px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password],
form select,
form textarea {
    width:100%;
    height: 30px;
    border: solid 1px #ccc;
    padding: 0 5px;
}
.form-group textarea {
    height: 50px;
    padding: 5px;
    font-family: Arial;
    resize: none;
}
textarea {
    resize: vertical;
}
.form-group input[type=file]{border:none;}
.form-group input[type=checkbox]{
    width: auto;
    border: none;
}

.password-with-icon {
    position: relative;
}
.password-with-icon input {
    padding-right: 40px!important;
}
.password-with-icon .icon-eye {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 18px;
    opacity: 0.6;
    cursor: pointer;
}
.password-with-icon .icon-eye.icon-eye--clicked {
    opacity:1;
    color: #1c4378;
}

.form-error {
    color: red;
    margin-bottom: 5px;
}

.form-content {
    display:flex;
    flex-wrap: wrap;
    margin: 0 -1%;
}
.form-block {
    background: #fff;
    width: 48%;
    margin: 20px 1%;
    padding: 20px;
    border-radius: 5px;
}

.form-actions {
    clear: left;
    text-align:right;
}

.form-two-cols, .form-three-cols {
    display: flex;
    margin: 0 -10px;
}

.form-date div {
    display: flex;
    margin: 0 -10px;
}

.form-name {
    display: flex;
    margin: 0 -10px;
}

.form-name .form-group, .form-two-cols .form-group, .form-three-cols .form-group, .form-date select {
    flex: auto;
    margin: 0 10px 10px 10px;
}

.flash-message {
    width: 100%;
    padding: 8px 20px;
    text-align: center;
    line-height: 20px;
}
.flash-success {
    background: #56e5aa;
}
.flash-error {
    background: #d84343;  
}
.flash-waiting {
    background: #485e7e;  
    color: white;
}
.flash-waiting a {
    color: white;
}

.register .flash-message {
    position: initial;
}

button, .button {
    display: inline-block;
    background: #1c4378;
    border: none;
    color: #fff;
    padding: 8px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    transition: opacity ease 300ms;
    font-family: 'Convergence',cursive;
}
button:hover, .button:hover {
    opacity: 0.8;
}

.secondary {
    background: #f8f9ff;
    border: solid 1px #1c4378;
    color: #1c4378;
}

.button--big {
    padding: 15px 20px;
    font-size: 1.1em;
}

.link-icon {
    text-decoration: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
}

.link-icon i {
    font-size: 1.3em;
    color: #333;
}

.display-colums {
    display: flex;
    justify-content: space-around;
}
.display-colums__item {
    flex:1;
}


@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 980px) {
    .form-block {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hideOnMobile {
        display:none!important;
    }
    .showOnMobile {
        display:inherit!important;
    }
    .practitioners-list th  {
        font-size: 1em;
    }
    .display-colums {
        flex-direction: column;
    }
}

