﻿
/* this style sheet is shared between the public and private site */

/* fonts */
@font-face {
    font-family: "Circular-Book";
    src:url("fonts/lineto-circular-book.eot");
    src:url("fonts/lineto-circular-book.eot?#iefix") format("embedded-opentype"),
        url("fonts/lineto-circular-book.woff") format("woff"),
        url("fonts/lineto-circular-book.ttf") format("truetype"),
        url("fonts/lineto-circular-book.svg#lineto-circular-book") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Circular-Bold";
    src:url("fonts/lineto-circular-bold.eot");
    src:url("fonts/lineto-circular-bold.eot?#iefix") format("embedded-opentype"),
        url("fonts/lineto-circular-bold.woff") format("woff"),
        url("fonts/lineto-circular-bold.ttf") format("truetype"),
        url("fonts/lineto-circular-bold.svg#lineto-circular-bold") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Circular-Medium";
    src:url("fonts/lineto-circular-medium.eot");
    src:url("fonts/lineto-circular-medium.eot?#iefix") format("embedded-opentype"),
        url("fonts/lineto-circular-medium.woff") format("woff"),
        url("fonts/lineto-circular-medium.ttf") format("truetype"),
        url("fonts/lineto-circular-medium.svg#lineto-circular-medium") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Enverus Icons";
    src:url("fonts/enverus-icons.eot");
    src:url("fonts/enverus-icons.eot?#iefix") format("embedded-opentype"),
        url("fonts/enverus-icons.woff") format("woff"),
        url("fonts/enverus-icons.ttf") format("truetype"),
        url("fonts/enverus-icons.svg#lineto-circular-medium") format("svg");
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.ttf");
    src: url("fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("fonts/Roboto-Bold.ttf");
    src: url("fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto-Light";
    src: url("fonts/Roboto-Light.ttf");
    src: url("fonts/Roboto-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/* energy link colors */
/* red */
.red-background { background-color: #e31e26; color: white; }
.red-background a, .red-background a:visited, .red-background:active:active, .red-background p, .red-background h2, .red-background h2 a { color: white!important; } 
.red-background a:hover { color: white;  text-decoration: underline;}
.red-foreground { color: #e31e26; }
/* green */
.green-background { background-color: #1fae69; color: white; }
.green-background a, .green-background a:visited, .green-background:active:active { color: white!important; }
.green-background a:hover { color: white; text-decoration: underline; }
.green-foreground { color: #1fae69; }
/* blue */
.blue-background { background-color: #228fb1; color: white; }
.blue-background a, .blue-background a:visited, .blue-background:active:active { color: white!important; }
.blue-background a:hover { color: white; text-decoration: underline; }
.blue-foreground { color: #228fb1; }
/* yellow */
.yellow-background { background-color: #eab03b; color: white; }
.yellow-background a, .yellow-background a:visited, .yellow-background:active:active { color: white!important; }
.yellow-background a:hover { color: white; text-decoration: underline; }
.yellow-foreground { color: #eab03b; }
/* white */
.white-background { background-color: white; color: #796e65; }
.white-background a, .white-background a:visited, .white-background:active:active { color: #796e65!important; }
.white-background a:hover { color: #796e65;  text-decoration: underline; }
.white-foreground { color: white; }
/* gray */
.gray-foreground {
    color: #796e65;
}

.arrow-left, .arrow-right, .arrow-right-white, .arrow-up, .arrow-right-blue, .arrow-left-blue {
    display: inline-block;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    width: 13px;
    height: 12px;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.arrow-left {
    background-image: url(../Public/img/icon/arrow-left.png);
    background-image: linear-gradient(transparent, transparent), url(../Public/img/icon/arrow-left.svg);
}
.arrow-right {
    background-image: url(../Public/img/icon/arrow-right.png);
    background-image: linear-gradient(transparent, transparent), url(../Public/img/icon/arrow-right.svg);
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.arrow-right-white {
        background-image: url(../Public/img/icon/arrow-right-white.png);
        background-image: linear-gradient(transparent, transparent), url(../Public/img/icon/arrow-right-white.svg);
        -webkit-transition: .3s ease-out;
        transition: .3s ease-out;            
}
.arrow-up {
        background-image: url(../Public/img/icon/arrow-up.png);
        background-image: linear-gradient(transparent, transparent), url(../Public/img/icon/arrow-up.svg);
        width: auto;
        height: 15px;
        margin: 20px 0;
}
h4 a:hover span.arrow-right-white {
    background-color: transparent;
    opacity: .7;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}

.EnvironmentInfoPublic {display: inline-block;position: absolute;border: solid #796e65 1px;padding: 0 4px 0 2px;z-index: 99;color: #796e65;}
.EnvironmentColorBranch { background-color: lightgreen;}
.EnvironmentColorDev { background-color: lightsalmon;}
.EnvironmentColorTest { background-color: yellow;}
.EnvironmentColorTest2 { background-color: orange;}
.EnvironmentColorDemo { background-color: lightcyan;}
.EnvironmentColorProd { background-color: lightblue;}
.EnvironmentColorSandbox { background-color: wheat;}

/* for fluid video sizing accross browser sizes/devices (https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php) */
 .VideoWrapper {
	position: relative;
	padding-bottom: 54.21%; /* 16:9 is 56.25% but 54.21% seems to work best at getting rid of black borders */
	padding-top: 25px;
	height: 0;
}
.VideoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.rd-public-video-cell {
	padding: 7% !important;
}


/* Password Checker Tooltip */
.password-checker
{
	background-color: #fff;
    border: 1px solid #aaa;
	border-radius: 2px;
    box-shadow: 0 1px 3px #bbb;
	display: none;
    padding: 0 15px 15px;
    position: absolute;
    right: -340px;
	top: -40px;
    width: 330px;
	z-index: 1000;
}
/* bubble arrow */
.password-checker:before {
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 7px solid #aaa;
	content: " ";
	position: absolute;
	left: -8px;
	top: 50px;
}
.password-checker:after {
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 7px solid #fff;
	content: " ";
	position: absolute;
	left: -6px;
	top: 50px;
}
.password-checker.password-checker-left { left: -305px; right: auto; }
.password-checker.password-checker-left:before {
	border-right: none;
	border-left: 7px solid #aaa;
	left: auto;
	right: -8px;
}
.password-checker.password-checker-left:after {
	border-right: none;
	border-left: 7px solid #fff;
	left: auto;
	right: -6px;
}

.password-checker h6 { margin: 15px 0 5px 0; }
.password-checker ul { list-style-type: none; margin: 0; padding: 0; }
.password-checker ul li { padding-left: 20px; position: relative; }
.password-checker ul li.valid { color: #009e0f; }
.password-checker ul li.valid > i.fa-times-square { display: none; }
.password-checker ul li.invalid { color: #e31e26; }
.password-checker ul li.invalid > i.fa-check-square { display: none; }
.password-checker ul li.pl-2 { padding-left: 2px; }
.password-checker ul li.border-top { margin-top: 5px; padding-top: 5px; }
.password-checker ul li.border-bottom { margin-bottom: 5px; padding-bottom: 5px; }
.password-checker ul li i {  position: absolute; left: -2px; top: 2px; }

/* password show/hide icon */
.password-field-container input:-webkit-autofill,
.password-field-container input:-webkit-autofill:hover, 
.password-field-container input:-webkit-autofill:focus, 
.password-field-container input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 30px white inset; } /* chrome autofill input background override */
.password-field-container input { filter: none; }   /* firefox autofill input background override => https://stackoverflow.com/a/55326037 */
.password-field-container .password-field-append { 
    background-color: transparent;
    cursor: pointer;
    height: 32px;
    line-height: 36px;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 3;
}
.password-field-container .password-field-append i { opacity: 0.75; padding: 0 10px; }
.password-field-container .password-field-append i.fa-eye-slash:before { position: relative; left: -1px; }
.password-field-container .password-field-append:hover i { opacity: 1; }

/* hide the browser's native show/hide password icon => https://stackoverflow.com/a/61450596 */
input::-ms-reveal, input::-ms-clear { display: none; } 

/**************************************************************************************************************************
 ** Re-branding
 **************************************************************************************************************************/

/* background colors */
.bg-corporate { background-color: #56bc2f; }
.bg-corporate-secondary { background-color: #58a7af; }
.bg-corporate-tertiary { background-color: #93328E; }
.bg-corporate h1, .bg-corporate h1 a, .bg-corporate h2, .bg-corporate h2 a, .bg-corporate h4 a, .bg-corporate h5, .bg-corporate h1 span, .bg-corporate p, .bg-corporate a,
.bg-corporate-secondary h1 a, .bg-corporate-secondary h4 a, .bg-corporate-secondary h5, .bg-corporate-secondary h1 span, .bg-corporate-secondary p, .bg-corporate-secondary a,
.bg-corporate-tertiary h1 a, .bg-corporate-tertiary h4 a, .bg-corporate-tertiary h5, .bg-corporate-tertiary h1 span, .bg-corporate-tertiary p, .bg-corporate-tertiary a { color: #fff; }


/* enverus icons */
.fe {
    font-family: "Enverus Icons";
    font-style: normal;
    line-height: 1;
}
.fe.fe-alert:before { content: "\e900"; }
.fe.fe-analytics:before { content: "\e9a0"; }
.fe.fe-analyze:before { content: "\e901"; }
.fe.fe-approved:before { content: "\e902"; }
.fe.fe-atom:before { content: "\e903"; }
.fe.fe-award:before { content: "\e904"; }
.fe.fe-badge:before { content: "\e905"; }
.fe.fe-balance:before { content: "\e906"; }
.fe.fe-bar-selected:before { content: "\e998"; }
.fe.fe-barbell:before { content: "\e907"; }
.fe.fe-barline:before { content: "\e908"; }
.fe.fe-barrel:before { content: "\e909"; }
.fe.fe-blocks:before { content: "\e90a"; }
.fe.fe-box:before { content: "\e90b"; }
.fe.fe-brainstorm:before { content: "\e90c"; }
.fe.fe-bridge:before { content: "\e90d"; }
.fe.fe-briefcase:before { content: "\e90e"; }
.fe.fe-buildings:before { content: "\e90f"; }
.fe.fe-calculate:before { content: "\e910"; }
.fe.fe-calendar:before { content: "\e911"; }
.fe.fe-camera:before { content: "\e912"; }
.fe.fe-car:before { content: "\e913"; }
.fe.fe-check:before { content: "\e914"; }
.fe.fe-checklist:before { content: "\e915"; }
.fe.fe-chemistry:before { content: "\e916"; }
.fe.fe-chess:before { content: "\e917"; }
.fe.fe-cloudmoney:before { content: "\e918"; }
.fe.fe-cloudreach:before { content: "\e919"; }
.fe.fe-cloudtransfer:before { content: "\e91a"; }
.fe.fe-comment-square:before { content: "\e999"; }
.fe.fe-compass:before { content: "\e91b"; }
.fe.fe-connection:before { content: "\e91c"; }
.fe.fe-controls:before { content: "\e91e"; }
.fe.fe-convo:before { content: "\e91f"; }
.fe.fe-cord:before { content: "\e920"; }
.fe.fe-court:before { content: "\e921"; }
.fe.fe-crane:before { content: "\e922"; }
.fe.fe-credit:before { content: "\e923"; }
.fe.fe-curvegraph:before { content: "\e924"; }
.fe.fe-dashboard:before { content: "\e925"; }
.fe.fe-data:before { content: "\e926"; }
.fe.fe-datacenter:before { content: "\e927"; }
.fe.fe-decrease:before { content: "\e928"; }
.fe.fe-direction:before { content: "\e929"; }
.fe.fe-docs:before { content: "\e92a"; }
.fe.fe-donate:before { content: "\e92b"; }
.fe.fe-download:before { content: "\e92c"; }
.fe.fe-drill:before { content: "\e92d"; }
.fe.fe-email:before { content: "\e9af"; }
.fe.fe-envelope:before { content: "\e99c"; }
.fe.fe-envelope-open:before { content: "\e99d"; }
.fe.fe-expand:before { content: "\e92e"; }
.fe.fe-expert:before { content: "\e92f"; }
.fe.fe-extract:before { content: "\e930"; }
.fe.fe-factory:before { content: "\e931"; }
.fe.fe-fast:before { content: "\e932"; }
.fe.fe-fax:before { content: "\e933"; }
.fe.fe-file:before { content: "\e934"; }
.fe.fe-files:before { content: "\e996"; }
.fe.fe-flame:before { content: "\e935"; }
.fe.fe-flashlight:before { content: "\e936"; }
.fe.fe-flow:before { content: "\e937"; }
.fe.fe-folders:before { content: "\e99a"; }
.fe.fe-gas:before { content: "\e938"; }
.fe.fe-gauge:before { content: "\e939"; }
.fe.fe-gears:before { content: "\e93a"; }
.fe.fe-globalincrease:before { content: "\e93b"; }
.fe.fe-graphs:before { content: "\e93c"; }
.fe.fe-green:before { content: "\e93d"; }
.fe.fe-hardhat:before { content: "\e93e"; }
.fe.fe-headset:before { content: "\e91d"; }
.fe.fe-helicopter:before { content: "\e93f"; }
.fe.fe-help:before { content: "\e99e"; }
.fe.fe-hourglass:before { content: "\e940"; }
.fe.fe-idea:before { content: "\e941"; }
.fe.fe-increase:before { content: "\e942"; }
.fe.fe-info:before { content: "\e943"; }
.fe.fe-insurance:before { content: "\e944"; }
.fe.fe-intel:before { content: "\e945"; }
.fe.fe-invest:before { content: "\e946"; }
.fe.fe-invoice:before { content: "\e947"; }
.fe.fe-juggle:before { content: "\e948"; }
.fe.fe-key:before { content: "\e949"; }
.fe.fe-kpi:before { content: "\e94a"; }
.fe.fe-land:before { content: "\e94b"; }
.fe.fe-learning:before { content: "\e9a1"; }
.fe.fe-lease:before { content: "\e94c"; }
.fe.fe-library:before { content: "\e94d"; }
.fe.fe-lifevest:before { content: "\e94e"; }
.fe.fe-lightning:before { content: "\e94f"; }
.fe.fe-lighthouse:before { content: "\e950"; }
.fe.fe-line:before { content: "\e951"; }
.fe.fe-locate:before { content: "\e952"; }
.fe.fe-location:before { content: "\e953"; }
.fe.fe-look:before { content: "\e954"; }
.fe.fe-manual:before { content: "\e955"; }
.fe.fe-map:before { content: "\e956"; }
.fe.fe-map-alt:before { content: "\e9a2"; }
.fe.fe-market:before { content: "\e957"; }
.fe.fe-measure:before { content: "\e958"; }
.fe.fe-media:before { content: "\e959"; }
.fe.fe-megaphone:before { content: "\e95a"; }
.fe.fe-microscope:before { content: "\e95b"; }
.fe.fe-mobile:before { content: "\e9a4"; }
.fe.fe-moneybag:before { content: "\e95c"; }
.fe.fe-mountain:before { content: "\e95d"; }
.fe.fe-negotiate:before { content: "\e95e"; }
.fe.fe-nuclear:before { content: "\e95f"; }
.fe.fe-org:before { content: "\e960"; }
.fe.fe-parachute:before { content: "\e961"; }
.fe.fe-pdf:before { content: "\e9a5"; }
.fe.fe-permian:before { content: "\e962"; }
.fe.fe-phone:before { content: "\e963"; }
.fe.fe-pie:before { content: "\e964"; }
.fe.fe-plan:before { content: "\e965"; }
.fe.fe-plug:before { content: "\e966"; }
.fe.fe-powerline:before { content: "\e967"; }
.fe.fe-presentation:before { content: "\e968"; }
.fe.fe-puzzle:before { content: "\e969"; }
.fe.fe-question:before { content: "\e96a"; }
.fe.fe-question-square:before { content: "\e9a3"; }
.fe.fe-radar:before { content: "\e96b"; }
.fe.fe-reduce:before { content: "\e96c"; }
.fe.fe-refresh:before { content: "\e96d"; }
.fe.fe-report:before { content: "\e96e"; }
.fe.fe-review:before { content: "\e96f"; }
.fe.fe-rig:before { content: "\e970"; }
.fe.fe-rocket:before { content: "\e971"; }
.fe.fe-roi:before { content: "\e972"; }
.fe.fe-safe:before { content: "\e973"; }
.fe.fe-satellite:before { content: "\e9a6"; }
.fe.fe-save:before { content: "\e974"; }
.fe.fe-search:before { content: "\e975"; }
.fe.fe-searchglobal:before { content: "\e976"; }
.fe.fe-searchweb:before { content: "\e977"; }
.fe.fe-secure:before { content: "\e978"; }
.fe.fe-send:before { content: "\e979"; }
.fe.fe-servers:before { content: "\e97a"; }
.fe.fe-ship:before { content: "\e97b"; }
.fe.fe-shop:before { content: "\e97c"; }
.fe.fe-sign:before { content: "\e97d"; }
.fe.fe-simplify:before { content: "\e97e"; }
.fe.fe-solar:before { content: "\e97f"; }
.fe.fe-spiral:before { content: "\e980"; }
.fe.fe-stack:before { content: "\e981"; }
.fe.fe-stop:before { content: "\e982"; }
.fe.fe-store:before { content: "\e983"; }
.fe.fe-strategy:before { content: "\e984"; }
.fe.fe-strategy-alt:before { content: "\e9a7"; }
.fe.fe-surveillance:before { content: "\e985"; }
.fe.fe-target:before { content: "\e986"; }
.fe.fe-team:before { content: "\e997"; }
.fe.fe-teamwork:before { content: "\e987"; }
.fe.fe-temp:before { content: "\e988"; }
.fe.fe-texas:before { content: "\e989"; }
.fe.fe-tools:before { content: "\e98a"; }
.fe.fe-touch:before { content: "\e98b"; }
.fe.fe-tower:before { content: "\e98c"; }
.fe.fe-train:before { content: "\e98d"; }
.fe.fe-transaction:before { content: "\e98e"; }
.fe.fe-trash:before { content: "\e98f"; }
.fe.fe-truck:before { content: "\e990"; }
.fe.fe-valve:before { content: "\e991"; }
.fe.fe-ven:before { content: "\e992"; }
.fe.fe-video:before { content: "\e99f"; }
.fe.fe-view-document:before { content: "\e99b"; }
.fe.fe-water:before { content: "\e993"; }
.fe.fe-webinars:before { content: "\e9a9"; }
.fe.fe-wind:before { content: "\e994"; }
.fe.fe-worldwide:before { content: "\e995"; }
.fe.fe-xls:before { content: "\e9a8"; }