﻿:root {
    --primary: #15365D; /*Verde #37687A;*/
    --primary-disabled: rgba(21, 54, 93, 0.75);
    /*--primary: #fff;*/
    --color-primay: #fff;
    --secondary: #ccc;
    --status: #c80056;
    --fontRoboto: 'Roboto', sans-serif !important;
}

@-webkit-keyframes drawer-show {

    to {
        /*background-color: yellow;*/
        left: 0;
        margin-left: 0px;
    }
}

/* Standard syntax */
@keyframes drawer-show {

    to {
        /*background-color: yellow;*/
        left: 0;
        margin-left: 0px;
    }
}

@-webkit-keyframes drawer-hide {

    to {
        /*background-color: yellow;*/
        left: 0;
        margin-left: -285px;
    }
}

/* Standard syntax */
@keyframes drawer-hide {

    to {
        /*background-color: yellow;*/
        left: 0;
        margin-left: -285px;
    }
}

body, html {
    margin: 0px auto;
    padding: 0px 0px 0px 0px;
    font-family: var(--fontRoboto) !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

#containment-wrapper {
    width: 480px;
    margin-left: -250px;
    height: 100%;
}

#drawer {
    padding: 0px 0px 0px 0px;
    position: fixed;
    z-index: 9999;
    background-color: transparent;
    color: var(--color-primay);
    width: 300px;
    height: 100%;
    margin-left: -285px;
    /*margin-left: 0px;*/
    top: 0;
    left: 0;
}

#drawer-hide {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0, 0, 0, 0.40);
    display: none;
}

ul li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid silver;
}

.drawer-menu-content {
    background-color: #fff;
    width: 285px;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

.list-menu {
    list-style: none;
    padding: 0px !important;
    margin: 0px;
}

.drawer-menu-content > .link-menu {
    width: 100%;
    padding: 20px 0px !important;
    cursor: pointer;
    display: block;
    text-decoration: none;
    border-top: 1px solid #f1f1f1;
    color: #1a1a1a;
}

    .drawer-menu-content > .link-menu:first-child {
        border-top: none !important;
    }

    .drawer-menu-content > .link-menu:hover {
        padding: 20px 0px !important;
        cursor: pointer;
        background-color: var(--primary);
        color: white;
    }

.item-menu {
    margin: 10px;
}

.aMenu {
    text-decoration: none !important;
    color: #000;
}

/*############################################################################################*/
.field {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: 1.5em;
}



.form-cadastro {
}
/**
        * Add a transition to the label and input.
        * I'm not even sure that touch-action: manipulation works on
        * inputs, but hey, it's new and cool and could remove the
        * pesky delay.
        */
label, .form-cadastro {
    transition: all 0.2s;
    touch-action: manipulation;
    font-family: var(--fontRoboto);
}

select {
    font-family: var(--fontRoboto);
}

.form-cadastro {
    width: 100%;
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: var(--fontRoboto);
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0 0 5px 0;
    cursor: text;
    margin-top: 5px;
    background-color: transparent !important;
}

    .form-cadastro:focus {
        outline: 0;
        border-bottom: 1px solid var(--primary);
    }

        .form-cadastro:focus + label {
            color: var(--primary);
        }

.label {
    font-size: 11px;
    color: #757575;
    margin-bottom: 6px !important;
    font-family: var(--fontRoboto);
}
/**
        * Translate down and scale the label up to cover the placeholder,
        * when following an input (with placeholder-shown support).
        * Also make sure the label is only on one row, at max 2/3rds of the
        * field—to make sure it scales properly and doesn't wrap.
        */
.form-cadastro:placeholder-shown + label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 1.8rem) scale(1.3);
}
/**
        * By default, the placeholder should be transparent. Also, it should
        * inherit the transition.
        */
::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}
/**
        * Show the placeholder when the input is focused.
        */
.form-cadastro:focus::-webkit-input-placeholder {
    opacity: 1;
}
/**
        * When the element is focused, remove the label transform.
        * Also, do this when the placeholder is _not_ shown, i.e. when
        * there's something in the input at all.
        */
.form-cadastro:not(:placeholder-shown) + label,
.form-cadastro:focus + label {
    transform: translate(0,0) scale(1);
    cursor: default;
    /*color:var(--primary);*/
}

.form-cadastro:not(:placeholder-shown) {
    /*border-bottom: 1px solid var(--primary);*/
}

textarea {
    font-size: 0.9em !important;
    resize: none;
    font-family: var(--fontRoboto);
}



.btn-sm {
    padding: 5px 5px !important;
    margin: 5px 5px !important;
    font-size: 12px !important;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--color-primay);
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    cursor: pointer;
    outline: 0;
    padding: 10px 10px;
    text-align: center;
    /*margin: 10px 10px;*/
    /*font-size: 14px;*/
}



    .btn-primary.disabled,
    .btn-primary[disabled] {
        background-color: var(--primary-disabled);
    }

.btn-block {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    padding: 10px;
    cursor: pointer;
    outline: 0;
}
/*############################################################################################*/

.topo {
    height: 60px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    background-color: var(--primary);
    text-align: center;
}

.topoDown {
    height: 20px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    background-color: #000;
}


.header {
    background-color: var(--primary);
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0px;
    left: 0px;
    height: 60px;
    line-height: 40px;
    color: var(--color-primay);
}

.header-content {
    padding: 10px;
}



.container {
    margin-top: 20px;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.container-galeria {
    position: fixed;
    top: 80px;
    z-index: 9999;
    padding: 0px;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}



.container-fluid {
    margin-top: 80px;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
}


.page {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: none;
    overflow-y: scroll;
    padding-bottom: 50px;
}

.bg-primary {
    background-color: var(--primary);
    color: var(--color-primay);
}

.head-page {
    background-color: var(--primary);
    width: 100%;
    height: 60px;
    line-height: 40px;
    color: var(--color-primay);
}

.icon-menu {
    margin: 5px 32px 5px 10px;
}


.menuBars {
    display: none;
}

.menuMobile {
    display: none;
}

.indice {
    display: none;
}

@media(max-width:1024px) {
    .touch-side-swipe {
        /*background: hsl(2, 57%, 40%);*/
    }

    .menu {
        display: none;
    }

    .menuBars {
        position: absolute;
        top: 16px;
        left: 20px;
        background-color: transparent;
        display: block;
        color: white;
        font-size: 24px;
    }

    .menuMobile {
        display: none;
        position: absolute;
        top: 61px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        z-index: 999;
    }

    .divMenu {
        text-align: center;
        padding: 10px 0px;
    }

    .aDivMenu {
        color: #fff !important;
    }

    .indice {
        display: block;
        text-align: center;
    }

    .btn-login {
        width: 100%;
    }
}

.touch-side-swipe ul {
    display: block;
    overflow-y: overlay;
    margin: 0;
    padding: 0;
    line-height: 30px;
}

.touch-side-swipe a {
    color: #fff;
}

* {
    box-sizing: border-box;
}

.navbar-toggle {
    outline: 0 !important;
    position: relative;
    float: left;
    padding: 3px 8px;
    margin-top: 8px;
    margin-right: 20px;
    margin-bottom: 8px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

.icon-bar {
    background-color: var(--color-primay) !important;
    margin-bottom: 4px;
}


fieldset {
    border: none;
    padding: 0px;
    margin: 0 auto;
}

legend {
    margin: 0;
    padding: 0px;
    margin-bottom: 3px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

/*############ CHECKBOX #########*/

/* The container */
.containerCheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--fontRoboto);
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc !important;
    line-height: 24px;
}



    /* Hide the browser's default checkbox */
    .containerCheck input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border: 1px solid #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerCheck input:checked ~ .checkmark {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.containerCheck:checked {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerCheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.containerCheck .checkmark:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid var(--color-primay);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*############ END CHECKBOX #########*/










/*############ RADIOBUTTONS #########*/

/* The container */
.containerRadio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--fontRoboto);
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc !important;
    line-height: 25px;
}

    /* Hide the browser's default radio button */
    .containerRadio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmarkRadio {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 50%;
}


/* When the radio button is checked, add a blue background */
.containerRadio input:checked ~ .checkmarkRadio {
    background-color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmarkRadio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.containerRadio input:checked ~ .checkmarkRadio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.containerRadio .checkmarkRadio:after {
    top: 7px;
    left: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/*####################### Input File ################################*/
/* Esconde o input */
#selecaoArquivo {
    display: none;
}

/* Aparência que terá o seletor de arquivo */
.inputFile {
    background-color: var(--primary);
    color: var(--color-primay);
    cursor: pointer;
    width: 100% !important;
    text-align: center !important;
}

/*####################### End Input File ################################*/
* {
    -webkit-tap-highlight-color: transparent;
}

.list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    border: none;
    vertical-align: middle;
    width: 100%;
}

    .list > li {
        padding: 20px 0;
        border-bottom: 1px solid #E6E6E6;
        width: 100%;
        font-family: var(--fontRoboto);
    }

        .list > li > a {
            display: inline-block;
            color: #000;
            text-decoration: none;
            width: 100%;
            font-family: var(--fontRoboto);
        }

ul > li:last-child {
    padding: 20px 0;
    border-bottom: none;
}


.list-image-circle {
    float: left;
    width: 50px;
    border-radius: 50%;
    vertical-align: middle;
}

.list-image-corners {
    float: left;
    width: 50px;
    border-radius: 5px;
    vertical-align: middle;
}

.list-image-square {
    float: left;
    width: 50px;
    border-radius: 0;
    vertical-align: middle;
}


.list-text {
    vertical-align: middle;
    margin-left: 20px;
    line-height: 44px;
}


.list-icon {
    float: left;
    vertical-align: middle;
    font-size: 18px;
    line-height: 20px;
}

.list-text-icon {
    vertical-align: middle;
    margin-left: 20px;
}

.swiper-slide {
    margin-bottom: 50px;
}

.margim-footer {
    height: 60px;
}

.img-responsive {
    width: 100%;
}

.swiper-pagination-progressbar-fill {
    background-color: var(--primary);
}


.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999998;
    background-color: rgba(0, 0, 0, 0.75);
}

.loader-icon {
    position: fixed;
    width: 100%;
    text-align: center;
    color: #FFF;
    top: 40%;
    font-size: 20px;
    z-index: 999999;
}

.bg-white {
    background-color: #fff;
}

.backModal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    left: 0;
    top: 0;
    z-index: 999;
}

.modal-header-primary {
    background-color: var(--primary);
    color: var(--color-primay);
    padding: 10px;
}

.modal-body {
    background-color: #fff;
    padding: 30px 20px 10px;
    clear: both;
}

.pointer {
    cursor: pointer;
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background-color: #f1f1f1;
    border: 1px #f1f1f1 silver;
}

.text-area {
    width: 100%;
    border: 1px solid silver;
    outline: none;
    resize: vertical;
}


    .text-area::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: pink !important;
    }

    .text-area::-moz-placeholder { /* Firefox 19+ */
        color: pink !important;
    }

    .text-area:-ms-input-placeholder { /* IE 10+ */
        color: pink !important;
    }

    .text-area:-moz-placeholder { /* Firefox 18- */
        color: pink !important;
    }


.text-danger {
    color: darkred;
}
