﻿/**************************************/
/********* MAIN STYLING ***************/
/**************************************/

/* FONT AWESOME */
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');


/* FONTS */

/* circular */
@font-face {
	font-family:"Circular";
	src:url("/SiteElementsHomepage/css/fonts/lineto-circular-pro-book-woff.woff") format("woff");
	font-weight:normal;
	font-style:normal;
}
@font-face {
	font-family:"Circular";
	src:url("/SiteElementsHomepage/css/fonts/lineto-circular-pro-medium-woff.woff") format("woff");
	font-weight:500;
	font-style:normal;
}
@font-face {
	font-family:"Circular";
	src:url("/SiteElementsHomepage/css/fonts/lineto-circular-pro-bold-woff.woff") format("woff");
	font-weight:bold;
	font-style:normal;
}

/* lora */
@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: normal;
    src: url("/SiteElementsHomepage/css/fonts/lora/Lora.woff") format("woff");
}
@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: normal;
    src: url("/SiteElementsHomepage/css/fonts/lora/Lora-Italic.woff") format("woff");
}
@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: bold;
    src: url("/SiteElementsHomepage/css/fonts/lora/Lora-Bold.woff") format("woff");
}
@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: bold;
    src: url("/SiteElementsHomepage/css/fonts/lora/Lora-BoldItalic.woff") format("woff");
}

body {
	font-family: "Circular", Arial, sans-serif !important;
}

/* Max width container */
.container-max-width {
    max-width: 1920px;
    margin: 0 auto;
}

/* old cookie bar, to be removed when onetrust deployed */
#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}
#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
#cookie-bar {
    background-color: #10263b;
    height: auto;
    line-height: 24px;
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 2000;
}

#cookie-bar p{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
}
#cookie-bar a {
    color: #ffffff;
    display: inline-block;
    border-radius: 1px;
    text-decoration: none;
    padding: 8px;
    margin-left: 8px;
}

#cookie-bar .cb-enable {
    background: #007ca7;
}
#cookie-bar .cb-policy {
    background: transparent;
    border: 1px solid #fff;
}

/* OneTrust styles */
#ot-sdk-btn.ot-settings.ot-sdk-show-settings {
    color: #fff;
    background: none;
    border: none;
    display: inline;
    
}
#ot-sdk-btn.ot-sdk-show-settings:hover {
    background-color: unset!important;
    text-decoration: underline;
}
/* OneTrust styles End */


/* Reusable buttons within components */

/* primary button */
.generalFullWidth-wrap a.sys_primary-btn {
    display: inline-block;
    color: white;
    text-decoration:none; 
    height: auto; 
    text-align:left; 
    padding: 10px 60px 10px 15px; 
    background-color: var(--globalBlue);
    border: 2px solid var(--globalBlue);
    position: relative;
    border-radius: 68px;
    transition: all .3s;

}
.generalFullWidth-wrap a.sys_primary-btn:after {
    content: '';
    border: solid white;
    display: inline-block;
    padding: 4px;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 17px;
    border-width: 0 2px 2px 0;
}
.generalFullWidth-wrap a.sys_primary-btn:hover,
.generalFullWidth-wrap a.sys_primary-btn:focus {
    border: 2px solid var(--globalBlue);
    color: var(--globalBlue);
    background-image: none;
    background-color: transparent;
}
.generalFullWidth-wrap a.sys_primary-btn:hover:after,
.generalFullWidth-wrap a.sys_primary-btn:focus:after {
    border: 2px solid var(--globalBlue);
    padding: 4px;
    border-width: 0 2px 2px 0;
}

/* white button */
.generalFullWidth-wrap a.sys_white-btn {
    display: inline-block;
    color: var(--globalBlue) !important;
    text-decoration:none; 
    height: auto; 
    text-align:left; 
    padding: 10px 60px 10px 15px; 
    background-color: white;
    border: 2px solid white;
    border-radius: 68px;
    position: relative;
    transition: all .3s;

}
.generalFullWidth-wrap a.sys_white-btn:after {
    content: '';
    border: solid var(--globalBlue);
    display: inline-block;
    padding: 4px;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 17px;
    border-width: 0 2px 2px 0;
}
.generalFullWidth-wrap a.sys_white-btn:hover,
.generalFullWidth-wrap a.sys_white-btn:focus {
    border: 2px solid white;
    color: white !important ;
    background-image: none;
    background-color: transparent;
    /* background-color: #ccc;
     border: 2px solid #ccc; */
}
.generalFullWidth-wrap a.sys_white-btn:hover:after,
.generalFullWidth-wrap a.sys_white-btn:focus:after {
    border: 2px solid white;
    padding: 4px;
    border-width: 0 2px 2px 0;
}

/* secondary button */
.generalFullWidth-wrap a.sys_secondary-btn {
    display: inline-block;
    color: var(--globalBlue) !important;
    text-decoration:none; 
    height: auto; 
    text-align:left; 
    padding: 10px 60px 10px 15px; 
    background-color: transparent;
    border: 2px solid var(--globalBlue);
    border-radius: 68px;
    position: relative;
    transition: all .3s;

}
.generalFullWidth-wrap a.sys_secondary-btn:after {
    content: '';
    border: solid var(--globalBlue);
    display: inline-block;
    padding: 4px;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 17px;
    border-width: 0 2px 2px 0;
}
.generalFullWidth-wrap a.sys_secondary-btn:hover,
.generalFullWidth-wrap a.sys_secondary-btn:focus {
    border: 2px solid var(--globalBlue);
    color: white !important;
    background-image: none;
    background-color: var(--globalBlue);
}
.generalFullWidth-wrap a.sys_secondary-btn:hover:after,
.generalFullWidth-wrap a.sys_secondary-btn:focus:after {
    border: 2px solid white;
    padding: 4px;
    border-width: 0 2px 2px 0;
}

/* CTA - SHARED ACCROSS SITE - depricated */
.cta{
    width: max-content;
    text-align: left;
    background-color: transparent;
    color: black;
    padding: 2px 40px 2px 10px;
    border: 2px solid black;
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}
a.cta:hover, a.cta:focus {
    border: 2px solid black;
    background-color: #10263b;
    color: white;
}

.cta-arrow{
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 7px;
    right: 15px;
}
.cta:hover .cta-arrow, 
.cta:focus .cta-arrow {
    border-color: white;
}


/* DEPRICATED STYLES */
/* Keep here so it works on already implemented ones but no longer shows as an option
in the dropdown */

/* warm red */
.generalFullWidth-content a.CTA-Colour-WarmRed {background-color: #DE1B5C;}

/* pink arrow stripe  */
div.generalFullWidth-content a.CTA-ButtonPinkStripeWithArrow{
    border-color: transparent;
    background-color: transparent; 
    display: inline-block;
    color: var(--globalBlue);
    clear:both;
    text-decoration:none; 
    height: auto; 
    text-align:left; 
    padding: 10px 60px 10px 14px; 
    background-size: 18px auto; 
    background-position: right 10px top 50%; 
    background-repeat:no-repeat; 
    margin-bottom: 4px;
    border: 2px solid var(--globalBlue);
    width: fit-content;
    position: relative;
    border-radius: 68px;
    transition: all 0.3s ease;
}
div.generalFullWidth-content a.CTA-ButtonPinkStripeWithArrow:after {
    content: '';
    border: solid var(--globalBlue);
    display: inline-block;
    padding: 4px;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 17px;
    border-width: 0 2px 2px 0;
}
div.generalFullWidth-content a.CTA-ButtonPinkStripeWithArrow:hover,
div.generalFullWidth-content a.CTA-ButtonPinkStripeWithArrow:focus {
    border: 2px solid var(--globalBlue);
    color:  white;
    background-image: none;
    background-color: var(--globalBlue);
}
div.generalFullWidth-content a.CTA-ButtonPinkStripeWithArrow:hover:after,
div.generalFullWidth-content a.CTA-ButtonPinkStripeWithArrow:focus:after {
    border: 2px solid white;
    padding: 4px;
    border-width: 0 2px 2px 0;
}

/* arrow round right */
.generalFullWidth-content a.CTA-ArrowRoundRight {
    display:block; 
    text-decoration:none; 
    height: auto; 
    clear:both;
    background-color: var(--globalBlue);
    color: #fff; 
    text-align:left; 
    padding: 10px 60px 10px 15px; 
    margin-bottom: 4px;
    border: 2px solid transparent;
    border-radius: 68px;
    position: relative;
    transition: all 0.3s ease;
}

.generalFullWidth-content a.CTA-ArrowRoundRight:after {
    content: '';
    border: solid white;
    display: inline-block;
    padding: 4px;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 17px;
    border-width: 0 2px 2px 0;
}

.generalFullWidth-content a.CTA-ArrowRoundRight:hover:after,
.generalFullWidth-content a.CTA-ArrowRoundRight:focus:after {
    border: 2px solid var(--globalBlue);
    padding: 4px;
    border-width: 0 2px 2px 0;
}

.generalFullWidth-content a.CTA-ArrowRoundRight:hover {
    background-color: transparent; 
    color: var(--globalBlue); 
    border-color: var(--globalBlue); 
    text-decoration:none; 
}

.generalFullWidth-content a.CTA-ArrowRoundRight:focus {
    background-color: transparent; 
    color: var(--globalBlue); 
    border-color: var(--globalBlue); 
    text-decoration:none; 
}

/* orange, yellow and green cta */
.generalFullWidth-content a.CTA-greenButtonWithArrow,
.generalFullWidth-content a.CTA-orangeButtonWithArrow,
.generalFullWidth-content a.CTA-yellowButtonWithArrow{
    display:block; 
    color: var(--globalBlue);
    clear:both;
    text-decoration:none; 
    height: auto; 
    text-align:left; 
    padding: 10px 60px 10px 15px; 
    margin-bottom: 4px;
    background-color: white; 
    border: 2px solid #e3e0e0;
    position: relative;
    border-radius: 68px;
    transition: all 0.3s ease;
}

.generalFullWidth-content a.CTA-greenButtonWithArrow:after,
.generalFullWidth-content a.CTA-orangeButtonWithArrow:after,
.generalFullWidth-content a.CTA-yellowButtonWithArrow:after {
    content: '';
    border: solid white;
    display: inline-block;
    padding: 4px;
    right: 15px;
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 17px;
    border-width: 0 2px 2px 0;
}

.generalFullWidth-content a.CTA-greenButtonWithArrow:hover,
.generalFullWidth-content a.CTA-orangeButtonWithArrow:hover,
.generalFullWidth-content a.CTA-yellowButtonWithArrow:hover,
.generalFullWidth-content a.CTA-greenButtonWithArrow:focus,
.generalFullWidth-content a.CTA-orangeButtonWithArrow:focus,
.generalFullWidth-content a.CTA-yellowButtonWithArrow:focus {
    background-color: transparent; 
    color: var(--globalBlue); 
    border-color: var(--globalBlue); 
    text-decoration:none; 
}

.generalFullWidth-content a.CTA-yellowButtonWithArrow:hover:after,
.generalFullWidth-content a.CTA-yellowButtonWithArrow:focus:after,
.generalFullWidth-content a.CTA-orangeButtonWithArrow:hover:after,
.generalFullWidth-content a.CTA-orangeButtonWithArrow:focus:after,
.generalFullWidth-content a.CTA-greenButtonWithArrow:hover:after,
.generalFullWidth-content a.CTA-greenButtonWithArrow:focus:after {
     border: 2px solid var(--globalBlue);
     padding: 4px;
     border-width: 0 2px 2px 0;
}

.generalFullWidth-content a.CTA-greenButtonWithArrow{border-color: transparent;background-color: #c3e3cd;}
.generalFullWidth-content a.CTA-orangeButtonWithArrow{border-color: transparent;background-color: #f1d6bd;}
.generalFullWidth-content a.CTA-yellowButtonWithArrow{border-color: transparent;background-color:  #F8F0CD;}


