/* ==========================================================================
   #FONT
   ========================================================================== */
.font-robo {
    font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
}

.font-poppins {
    font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
}

/* ==========================================================================
   #GRID
   ========================================================================== */
.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-space {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.col-2 {
    width: -webkit-calc((100% - 60px) / 2);
    width: -moz-calc((100% - 60px) / 2);
    width: calc((100% - 60px) / 2);
}

@media (max-width: 767px) {
    .col-2 {
        width: 100%;
    }
}

/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
    margin: 0;
    padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
    margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
    min-width: 0;
    /* [1] */
    border: 0;
}

button {
    outline: none;
    background: none;
    border: none;
}

/* ==========================================================================
   #PAGE WRAPPER
   ========================================================================== */
.page-wrapper {
    min-height: 100vh;
}

body {
    font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 13px;
}

/* ==========================================================================
   #BACKGROUND
   ========================================================================== */

.bg-gra {
    background: -webkit-gradient(linear, left bottom, left top, from(#c2d9fb), to(#dbe7ea));
    background: -webkit-linear-gradient(bottom, #c2d9fb 0%, #dbe7ea 100%);
    background: -moz-linear-gradient(bottom, #c2d9fb 0%, #dbe7ea 100%);
    background: -o-linear-gradient(bottom, #c2d9fb 0%, #dbe7ea 100%);
    background: linear-gradient(to top, #c2d9fb 0%, #dbe7ea 100%);
}

.logo {
    max-height: 55px;
    position: absolute;
    top: 30px;
    left: 30px;
}

/* ==========================================================================
   #SPACING
   ========================================================================== */
.p-t-100 {
    padding-top: 100px;
}

.p-t-180 {
    padding-top: 180px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-b-100 {
    padding-bottom: 100px;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
.wrapper {
    margin: 0 auto;
}

.wrapper--w960 {
    max-width: 960px;
}

.wrapper--w780 {
    max-width: 780px;
}

.wrapper--w680 {
    max-width: 680px;
}


/* ==========================================================================
   #FORM
   ========================================================================== */
.input--style {
    font-size: 16px;
    color: #333;
    position: relative;
    margin-bottom: 15px;
}

.input--style::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #999;
}

.input--style:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
    opacity: 1;
}

.input--style::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
    opacity: 1;
}

.input--style:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
}

.input--style:-ms-input-placeholder {
    /* Microsoft Edge */
    color: #999;
}

/* ==========================================================================
   #SELECT2
   ========================================================================== */

.rs-select .select2-container {
    width: 100% !important;
    outline: none;
}

.rs-select .select2-container .select2-selection--single .select2-selection__rendered {
    height: 38px;
    line-height: 38px;
}


.rs-select .select2-container .select2-selection--single {
    border: 1px solid #ced4da;
    background: transparent;
    height: 38px;
    color: #3333;
    border-radius: 6px;
}

.rs-select .select2-container .select2-selection--single .select2-selection__arrow {
    height: 38px;
    right: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rs-select .select2-container .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.rs-select .select2-container .select2-selection--single .select2-selection__arrow:after {
    content: "\f078"; /* Código de carácter para el chevron en Font Awesome 4.7 */
    font-family: 'FontAwesome';
    font-size: 14px;
    color: #333;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.rs-select .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.rs-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 16px;
}

/*.select2-container.select2-container--open {*/
/*    z-index: 1100;*/
/*}*/

/*.select2-container.select2-container--open .select2-dropdown {*/
/*    z-index: 1101;*/
/*}*/

/* ==========================================================================
   #TITLE
   ========================================================================== */
.title {
    font-size: 24px;
    color: #333;
    font-weight: 400;
    margin-bottom: 36px;
}

/* ==========================================================================
   #CARD
   ========================================================================== */
.card {
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
}

.card-prescriber {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    display: table;
}

.card-prescriber .card-heading {
    position: relative;
    background: url("/assets/images/frontend/bg-heading.jpg") top left/cover no-repeat;
    display: table-cell;
    width: 50%;
}

.card-prescriber .card-body {
    padding: 57px 65px;
    padding-bottom: 65px;
}

.modal-footer {
    border: none;
}

@media (max-width: 767px) {
    .card-prescriber {
        display: block;
        border-radius: 0;
    }

    .card-prescriber .card-heading {
        display: block;
        width: 100%;
        padding-top: 200px;
        background-position: center center;
    }

    .card-prescriber .card-body {
        display: block;
        width: 100%;
        padding: 37px 30px;
        padding-bottom: 45px;
    }

    .p-b-100 {
        padding-bottom: 0;
    }

    .p-t-100 {
        padding-top: 0;
    }

    .logo {
        bottom: 30px;
        left: 30px;
        top: initial;
    }
}
