﻿/**== TEMPLATE ==**/
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 13px;
}

body {
    background-image: url("/Content/Images/day-min2.jpg");
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transition: 1s ease-in-out background-image;
    text-align: justify;
    font-family: 'Hind', sans-serif;
}

.container {
    padding: 0 !important;
    margin: 0 !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    overflow: auto;
}

#options_container {
    position: fixed;
    top: 10px;
    left: 15px;
    z-index: 1000;
}

#options_container .connected-user-btn {
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    width: 50px;
    text-align: center;
    background-color: #E06D08;
    color: #fff;
    border: none;
    -webkit-box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
            box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
}

/**== END TEMPLATE ==**/

/**== UTILS ==**/
/*.tinted {
	background-color: rgba(245, 245, 245, 0.9);
}*/
.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.flex-row .fill-space {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
form .flex-row {
    margin-bottom: 10px;
}
form .flex-row:last-child {
    margin-bottom: 0;
}
.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/**== END UTILS ==**/

/**== BASE ==**/
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none !important;
}

a {
    font-family: 'Hind', sans-serif;
}

/**== END BASE ==**/

/**
*   THEME
**/

/**== LINKS ==**/
a.elegant-link {
    color: #3e3e3e;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    transition: transform 0.1s ease-in;
    text-align: left;
}
a.elegant-link:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.1s ease-in;
}
a.elegant-link:hover {
  transform: scale(1.1);
}
a.elegant-link:hover:before {
    width: 60%;
}
/**== END LINKS ==**/

/**== INPUTS ==**/

/* checkbox */
input[type='checkbox'] + label {
    position: relative;
    padding-left: 15px;
    color: #3e3e3e !important;
}
input[type='checkbox'] + label:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    border: 1px solid #3e3e3e;
    top: 50%;
    left: 0;
    transform: translateY(-65%);
}
input[type='checkbox']:checked + label:before {
    background-color: #E06D08;
}
/* end checkbox */

/* general inputs */
input.input-control {
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #adadad;
    width: 100%;
}
input.input-control.ng-touched.ng-invalid {
    border-color: #BC2B2B;
}
input.input-control.ng-touched.ng-valid {
    border-color: #2bbc2e;
}
input.input-control:focus{
    border-color: #17B5CB !important;
}
input.input-control:focus {
    box-shadow: none;
}
input.input-control:disabled {
    cursor: not-allowed;
    position: relative;
}
input.input-control:disabled:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0,0,0,0.2);
}

input.input-control:read-only {
    cursor: not-allowed;
    position: relative;
    /*background-color: #F5D76E;*/
    background-color: rgba(0,0,0,0.1);
}
/* end general inputs */
/* inputs select */
select {
    border: none;
    border-bottom: 1px solid #adadad;
    width: 100%;
}
/* end inputs select */

/**== END INPUTS ==**/

/* profile user dropdowns */
.profile-user-container .profile-user-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: pointer;
}

.profile-user-container .profile-user-header > * {
	padding-right: 18px;
}

.profile-user-container .profile-user-header img {
	height: 62px;
	width: auto;
}

.profile-user-container .profile-user-body {
	background-color: #fff;
	color: #000;
	text-align: justify;
	min-width: 180px;
	padding: 0;
	margin-top: 16px;
	left: 5px;
	left: initial;
    -webkit-box-shadow: 4px 4px 4px 4px rgba(0,0,0,0.3);
            box-shadow: 4px 4px 4px 4px rgba(0,0,0,0.3);
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border: none;
}

.profile-user-container .profile-user-body:before {
	content: '';
	position: absolute;
	top: -10px;
	left: 19px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent #fff transparent;
}

.profile-user-container .profile-user-body > div, .profile-user-container .profile-user-body > li {
	padding: 0 10px 0 16px;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #000;
	cursor: pointer;
	border-color: #adadad;
    
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
       -ms-flex-direction: row;
           flex-direction: row;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
    padding: 6px;
}

.profile-user-container .profile-user-body > li i {
    margin-right: 6px;
}

.profile-user-container .profile-user-body > div > i, .profile-user-container .profile-user-body > li > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-user-container .profile-user-body > li > * {
    display: inline-block;
}

.profile-user-container .profile-user-body > div > i, .profile-user-container .profile-user-body > li a {
    background-color: transparent;
}

.profile-user-container .profile-user-body > div:first-child, .profile-user-container .profile-user-body > li:first-child {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.profile-user-container .profile-user-body > div:last-child, .profile-user-container .profile-user-body > li:last-child {
	border-width: 0;
}

.profile-user-container .profile-user-body > div:hover, .profile-user-container .profile-user-body > li:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.profile-user-container .profile-user-body > *:hover.success {
	background-color: #2bbc2e;
}
.profile-user-container .profile-user-body > *:hover.info {
	background-color: #17B5CB;
}
.profile-user-container .profile-user-body > *:hover.primary {
	background-color: #E06D08;
}
.profile-user-container .profile-user-body > *:hover.warning {
	background-color: #F5901D;
}
.profile-user-container .profile-user-body > *:hover.danger {
	background-color: #BC2B2B;
}
.profile-user-container .profile-user-body > *:hover.danger *, .profile-user-container .profile-user-body > *:hover.warning *, .profile-user-container .profile-user-body > *:hover.success *, .profile-user-container .profile-user-body > *:hover.info *, .profile-user-container .profile-user-body > *:hover.primary * {
    color: #fff;
    
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
/* end profile user dropdowns */