﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 2.890625rem;
    padding-bottom: 0.9375rem;
    background: #eee !important;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

input.empty {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}

#mainNav {
    background-color: #3157A7 !important;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.890625rem;
}



    #mainNav .navbar-brand {
        color: #fff;
    }


    #mainNav .navbar-nav {
        letter-spacing: 0.0625rem;
    }

        #mainNav .navbar-nav li.nav-item a.nav-link {
            color: #fff;
        }

        #mainNav .navbar-nav li.nav-item a.nav-link {
            color: #fff;
        }

            #mainNav .navbar-nav li.nav-item a.nav-link:hover {
                color: #18BC9C;
            }

            #mainNav .navbar-nav li.nav-item a.nav-link:active, #mainNav .navbar-nav li.nav-item a.nav-link:focus {
                color: #fff;
            }

            #mainNav .navbar-nav li.nav-item a.nav-link.active {
                color: #18BC9C;
            }

@media (max-width: 767px) {
    .navbar-collapse {
        background-color: #3157A7;
    }
}

.masthead {
    padding-left: 1rem;
    padding-right: 1rem;
    /*padding: 2rem 1rem;
    margin-bottom: 2rem;*/
    /*background-color: #36A792;*/
    background-image: linear-gradient(to bottom right, #17EAD9,#6078EA);
    /*background-image: linear-gradient(to bottom right, #17EAD9,#3157A7); Este usa el color de HandKross pero se ve un poco oscuro*/
    /*background-image: radial-gradient(#17EAD9,#6078EA);*/
    border-radius: 0.3rem;
    margin-bottom: 2rem;
}


.masthead-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

hr.star-light,
hr.star-dark {
    max-width: 15rem;
    padding: 0;
    text-align: center;
    border: none;
    border-top: solid 0.25rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}

    hr.star-light:after,
    hr.star-dark:after {
        position: relative;
        top: -.8em;
        display: inline-block;
        padding: 0 0.25em;
        content: '\f005';
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 2em;
    }

hr.star-light {
    border-color: #fff;
}

    hr.star-light:after {
        color: #fff;
        background-color: #36A792;
    }

#imgProfile {
    width: 13rem;
    height: 13rem;
}

hr.star-dark {
    border-color: #2C3E50;
}

    hr.star-dark:after {
        color: #2C3E50;
        background-color: white;
    }

.pure-material-button-contained {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: #3157A7;
    background-color: #3157A7;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

    .pure-material-button-contained::-moz-focus-inner {
        border: none;
    }

    /* Overlay */
    .pure-material-button-contained::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
        opacity: 0;
        transition: opacity 0.2s;
    }

    /* Ripple */
    .pure-material-button-contained::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50%;
        padding: 50%;
        width: 32px; /* Safari */
        height: 32px; /* Safari */
        background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        transition: opacity 1s, transform 0.5s;
    }

    /* Hover, Focus */
    .pure-material-button-contained:hover,
    .pure-material-button-contained:focus {
        box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
    }

        .pure-material-button-contained:hover::before {
            opacity: 0.08;
        }

        .pure-material-button-contained:focus::before {
            opacity: 0.24;
        }

        .pure-material-button-contained:hover:focus::before {
            opacity: 0.3;
        }

    /* Active */
    .pure-material-button-contained:active {
        box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
    }

        .pure-material-button-contained:active::after {
            opacity: 0.32;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0s;
        }

    /* Disabled */
    .pure-material-button-contained:disabled {
        color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
        background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
        box-shadow: none;
        cursor: initial;
    }

        .pure-material-button-contained:disabled::before {
            opacity: 0;
        }

        .pure-material-button-contained:disabled::after {
            opacity: 0;
        }


input,
textarea {
    display: block;
    width: 100%;
    border: 0;
    padding: 10px 5px;
    background: white no-repeat;
    /*
	* IMPORTANT PART HERE
	*/
    /* 2 imgs : 1px gray line (normal state) AND 2px green line (focus state) */
    background-image: linear-gradient(to bottom, #3157A7, #3157A7), linear-gradient(to bottom, silver, silver);
    /* sizes for the 2 images (default state) */
    background-size: 0 2px, 100% 1px;
    /* positions for the 2 images. Change both "50%" to "0%" or "100%" and tri again */
    background-position: 50% 100%, 50% 100%;
    /* animation solely on background-size */
    transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

    input:focus,
    textarea:focus {
        /* sizes for the 2 images (focus state) */
        background-size: 100% 2px, 100% 1px;
        outline: none;
    }

.lblName {
    font-size: 2.2em;
}

.lblSpecialty {
    font-size: 2em;
}

.image-upload > input {
    display: none;
}

.image-upload img {
    width: 80px;
    cursor: pointer;
}

.profile-items {
    position: absolute;
    z-index: 6;
    overflow: auto;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.79);
    padding-right: 0px;
    padding-left: 0px;
    width: 38.84892086%;
    top: 81.9%;
}

    .profile-items div {        
        padding: 5px;
        cursor: pointer;
        padding-top: 4px;
    }

        .profile-items div:hover {
            background-color: rgba(255, 255, 255, 0.90);
        }

.profile-div-text {
    width: calc(100% - 7em);
}

.w-custom-nav {
    width: 100% !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .w-custom-nav {
        max-width: 90% !important;
    }

    .profile-items {
        width: 83.4%;        
    }
}

@media (min-width: 991px) {

    .profile-items {
        width: 38.84892086%;
    }
}

@media (max-width: 767px) {
    .w-custom-nav {
        max-width: 80% !important;
    }

    .profile-items {
        width: 76.7%;
    }
}

@media (max-width: 480px) {
    .w-custom-nav {
        max-width: 70% !important;
    }

    .profile-items {
        max-width: 65%;
    }
}

@media (max-width: 268px) {
    .w-custom-nav {
        max-width: 60% !important;
    }

    .profile-items {
        max-width: 53%;
    }
}


.green_icon {
    background-color: #4cd137;
    position: relative;
    bottom: 10px;
    height: 20px;
    width: 20px;
    border: 3px solid white;
    border-radius: 50%;
    left: 50px;
    top: 75px;
}

.PictureSearch {
    border: 1px solid #f5f5f5;
    border-radius: 150px !important;
    height: 75px;
    padding: 3px;
    width: 75px;
}

.Profile-info {
    overflow: hidden;
}

    /*.Profile-info img {
        margin-right: 15px;
    }*/

    .Profile-info span {
        display: block;
    }

.Profile-FullName {
    color: #3157A7;
    font-size: 16px;
    font-weight: 300;    
}

.Profile-specialty_Customized {
    color: #656565;
    font-size: 12px;
}

.Profile-flagStyle {
    margin-right: 0px;
    margin-left: 25%;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        cursor: inherit;
        display: block;
    }

.input-group-btn {
    border: 0;
    background: none;
    /** belows styles are working good */
    padding: 2px 5px;
    margin-top: 2px;
    position: relative;
    left: -17.3%;
    /* IE7-8 doesn't have border-radius, so don't indent the padding */
    margin-bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #3157A7;
}

.input-search {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-image: none;
}

.ProfileLogin {
    width: 2.7rem;
    height: 2.7rem;
}

.DropdownMenuProfileLogin {
    width: 15rem;
}

.DropdownMenuProfileLoginProfileLogin {
    width: 2.7rem;
    height: 2.7rem;
    vertical-align: top;
}

.TextProfile {
    display: inline-block;
    width: calc(100% - 49px);
    padding-left: 5px;
}

.NameProfile {
    font-size: 0.90rem;
    display: block;
    margin-top:10px;
}

.Specialty_CustomizedProfile {
    font-size: 0.70rem;
    display: block;
}

.textDecorationNone {
    text-decoration: none;
}

.textDecorationNone:hover {
    text-decoration: none;
}


@media screen and (min-width: 320px) {
    .logo-lg {
        display: none;
    }

    .logo-mini {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .logo-lg {
        display: block;
    }

    .logo-mini {
        display: none;
    }
}

