
/*
Theme Name: Ikano Group Web
Theme URI: group.ikano
Author: AddPro AB
Author URI: https://www.addpro.se/
Description: 
Version: 1
Tags: 
Text Domain: 
*/

/*CSS fonts*/
@font-face {
	font-family: 'ikano_sanslight';
	src: url('../Ikano/lib/fonts/ikanosans-light-webfont.eot');
	src: url('../Ikano/lib/fonts/ikanosans-light-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../Ikano/lib/fonts/ikanosans-light-webfont.woff2') format('woff2'),
		 url('../Ikano/lib/fonts/ikanosans-light-webfont.woff') format('woff'),
		 url('../Ikano/lib/fonts/ikanosans-light-webfont.ttf') format('truetype'),
		 url('../Ikano/lib/fonts/ikanosans-light-webfont.svg#ikano_sanslight') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'ikano_sansbold';
	src: url('../Ikano/lib/fonts/ikanosans-bold-webfont.eot');
	src: url('../Ikano/lib/fonts/ikanosans-bold-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../Ikano/lib/fonts/ikanosans-bold-webfont.woff2') format('woff2'),
		 url('../Ikano/lib/fonts/ikanosans-bold-webfont.woff') format('woff'),
		 url('../Ikano/lib/fonts/ikanosans-bold-webfont.ttf') format('truetype'),
		 url('../Ikano/lib/fonts/ikanosans-bold-webfont.svg#ikano_sansbold') format('svg');
	font-weight: normal;
	font-style: normal;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
	background-color: #fff;
	font-family: ikano_sanslight, Arial, sans-serif;
	color: #34353a;
}

a {
    font-family: ikano_sansbold;
    font-weight: normal;
    font-size: .9375rem;
    color: #34353a;
}

a:hover {
    text-decoration: none;
    color: #fcbd31;
}

a[href^="mailto"]:hover{
    color: #fcbd31;
    text-decoration: none;
    transition: color .2s ease-out;
}

a[href^="mailto"] {
    font-family: ikano_sansbold;
    color: #34353a;
    /* border-bottom: 1px solid #fcbd31; */
} 

/* A link  primary START*/
.ikano-link-primary {
    font-family: ikano_sansbold;
    font-weight: normal;
    font-size: .9375rem;
    color: #34353a;
    text-decoration: none;
}
    .ikano-link-primary:not(.no-icon):after{
        background-image: none !important;
    }
    .ikano-link-primary:focus, .ikano-link-primary:hover {
        color: #ec0000;
        text-decoration: none;
    }

    /*For 404 page*/
    .ikano-h2-404 {
        font-family: ikano_sansbold;
        font-weight: normal;
        font-size: .9375rem;
        color: #34353a;
        text-decoration: none;
    }

/* A link  primary STOP */

p {
	font-family: ikano_sanslight,Arial,sans-serif;
    font-size: 16px;
	color: #34353a;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5rem;
}

h2 {
	font-family: ikano_sansbold;
	font-size: 1.75rem;
    line-height: 2.3125rem;
	margin: 0 0 10px;
	font-weight: 400;
	transition: font .25s ease;
}

h2 a{
	font-family: ikano_sansbold;
	font-size: 1.75rem;
    line-height: 2.3125rem;
	margin: 0 0 10px;
	font-weight: 400;
	transition: font .25s ease;
	color: #34353a;
}

h2 a:hover{
	font-family: ikano_sansbold;
	font-size: 1.75rem;
    line-height: 2.3125rem;
	margin: 0 0 10px;
	font-weight: 400;
	transition: font .25s ease;
	color: #fcbd31;
	text-decoration: none;

}

h3 {
	font-family: ikano_sansbold;
	font-size: .75rem;
	margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.no-padding {
    padding-top: 0px;
    padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

.no-margin {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

/* ARROWS */

.arrow-white {
    position: relative;
    left: 0;
    margin-left: 3px;
    border: solid #fff;
    border-radius: 1px;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.padding-bottom-and-top {
    padding-bottom: 20px;
    padding-top: 20px;
}

.arrow-yellow {
    position: relative;
    left: 0;
    margin-left: 3px;
    border: solid #fcbd31;
    border-radius: 1px;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.arrow-red {
    position: relative;
    left: 0;
    margin-left: 3px;
    border: solid #ec0000;
    border-radius: 1px;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* BUTTONS */

/* RED BUTTON, WHITE TEXT, WHITE ARROW */

.btn-ikano-red {
	background-color: #ec0000;
    border-color: #ec0000;
	border-radius: 2px;
	color: #fff;
}

.btn-ikano-red:hover {
	background-color: #c50f0f;
    border-color: #c50f0f;
    color: #fff;
}

.btn-ikano-red:hover .arrow-white {
	left: 5px;
}

/* YELLOW BUTTON, WHITE TEXT, WHITE ARROW */

.btn-ikano-yellow {
	background-color: #fcbd31;
    border-color: #fcbd31;
	border-radius: 2px;
	color: #fff;
}

.btn-ikano-yellow:hover {
	background-color: #de9e11;
    border-color: #de9e11;
    color: #fff;
}

.btn-ikano-yellow:hover .arrow-white {
	left: 5px;
}

/* LINKS */

/* BLACK TEXT, RED HOVER, RED ARROW */
.lnk-ikano-red {
	cursor: pointer;
	color: #34353a;
    text-decoration: none;
    transition: color .2s ease-out;
}

.lnk-ikano-red:hover {
	color: #ec0000;
    text-decoration: none;
}

.lnk-ikano-red:hover .arrow-red {
	left: 5px;
}

/* BLACK TEXT, YELLOW HOVER, YELLOW ARROW */
.lnk-ikano-yellow {
	cursor: pointer;
    color: #34353a;
    text-decoration: none;
    transition: color .2s ease-out;
}

.lnk-ikano-yellow:hover {
	color: #fcbd31;
    text-decoration: none;
}

.lnk-ikano-yellow:hover .arrow-yellow {
	left: 5px;
}

/* WHITE TEXT, YELLOW HOVER, YELLOW ARROW */
.lnk-white-ikano-yellow {
	cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: color .2s ease-out;
    border-bottom: 1px solid #fcbd31;
}

.lnk-white-ikano-yellow:hover {
	color: #fcbd31;
    text-decoration: none;
}

.lnk-white-ikano-yellow:hover .arrow-yellow {
	left: 5px;
}

/* SECONDARY NAVIGATION */

.secondary-navigation {
    background-color: rgba(52,53,58,.9);
    user-select: none;
    height: 72px;
    position: relative;
    clear: both;
    border-top: none;
    border-bottom: none;
}

.table {
    display: table;
    table-layout: fixed;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
}

.table:last-child {
    border-right: 1px solid #887e6f;
}

.table-cell {
    display: table-cell;
    height: 72px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    color: #fff;
    opacity: .5;
    border-left: 1px solid #887e6f;
}

.table-cell:hover {
    text-decoration: none;
    color: #fff;
    opacity: 1;
    background-color: rgba(28,28,31,.6);
}

.table-cell.active {
    opacity: 1;
    background-color: rgba(28,28,31,.6);
}

.table-cell.active::after {
    width: 0;
    height: 0;
    border-style: solid;
    content: "";
    position: absolute;
    left: calc(50% - (20px/2));
    border-width: 0 calc(20px/2) 10px;
    border-color: transparent transparent #fff;
    top: auto;
    bottom: 0;
}

@media (min-width: 1200px) {
	.secondary-navigation {
        padding: 0 calc(51vw - ((1200px/2) + 7.5px - 20px));
	}
}

/* NEEDED IN ORDER FOR NAVIGATION ARROW TO WORK IN EDGE */
_:-ms-lang(x), _:-webkit-full-screen, .table-cell.active::after
{ 
  bottom: -50px;
}

/* NEEDED IN ORDER FOR NAVIGATION ARROW TO WORK IN IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .table-cell.active::after { 
        bottom: -50px; 
    }
}

/* Quizen start*/
.chained-quiz-choice {
    background-color: #fff;
    width: 500px;
    height: 100px;
    padding: 5px;
}

.chained-quiz-choice:hover {
    background-color: #fcbd31;
}
.chained-quiz-label{
    margin-left: -5px;
    width: 500px;
    height: 100px;
    padding: 20px 20px 20px 20px;
}


@media (max-width: 500px) {
    .chained-quiz-choice {
        background-color: #fff;
        width: 340px;
        height: 100px;
        padding: 5px;
    }
    .chained-quiz-label{
        margin-left: -5px;
        width: 350px;
        height: 100px;
        padding: 20px 20px 20px 20px;
    }

}

.chained-quiz-question h2{
    color: #fff;
}

.chained-quiz-question p{
    color: #fff;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    visibility: hidden;
    width: 0px;
    height: 0px;
}

.entry .entry-content > * > *:last-child, .entry .entry-summary > * > *:last-child {
    margin-bottom: 0px;
    padding-top: 5%;
    padding-left: 10%;
}
.chained-quiz-choice:first-child {
    border-radius: 4px 4px 0 0;
}

.chained-quiz-choice:last-child {
    border-radius: 0 0 4px 4px;
}

/* 
/* chained */
 #chained-quiz-choices-4 {
	background-color: #fcbd31;
    border-color: #fcbd31;
	border-radius: 2px;
    color: #fff;
    width: 140px;
     height: 40px;
     cursor: pointer;
}

 #chained-quiz-choices-4 .chained-quiz-choice{
     width: 140px;
     height: 40px;
     background-color: #fcbd31;
     cursor: pointer;
 }
 #chained-quiz-choices-4 .chained-quiz-choice .chained-quiz-label{
     width: 140px;
     height: 40px;
     background-color: #fcbd31;
     cursor: pointer;
     font-family: ikano_sansbold;
     padding: .375rem .75rem;
         border: 1px solid transparent;
 }
/*Quiz css end*/