/*######## Main ##########*/
@import url('https://fonts.googleapis.com/css?family=Quicksand|Roboto|Lato:300');
@import "style-defaults.css"; /* Using a string */
@import "modal.css";

* {
    box-sizing: border-box;
    padding:0px;
    margin:0px;
    font-family: 'Quicksand', sans-serif;
    text-shadow: none !important;
    box-shadow:none;
    font-weight:100;
}

p {
  margin-top:10px;
  margin-bottom:10px;
}

body {
    min-height: 100%;
    min-width:100%;
    height: 100%;
    width:100%;
}

.site {
    position: absolute;
    top:0;
    left:0;
    
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    grid-template-areas:
        "maincontent";
    
    background:linear-gradient(141deg, rgba(153,183,193,0.1) 0%, rgba(153,183,193,0.2) 21%, rgba(153,183,193,0.6) 75%
        ), url('../img/background-group-meeting.jpg') no-repeat;
    background-attachment: fixed;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    
    min-height: 100%;
    min-width:100%;
    height: 100%;
    width:100%;
    

}
.sitebottom {
    grid-area: sitebottom;
    font-size:10px;
    margin-top:10px;
    margin-left:70px;
}

/* ########## HEADER ########## */

.header {
  padding:0px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-template-areas:
    "menu logo logo logo logo . user-logo user-logo . . . loginfield";
  grid-area: header; 
  background-color: #014550;
  color: white;
  align-items: center;      /* new */
  justify-items: start;    /* new */
    top:0;
    left:0;
    height:50px;
    width:100%;
    z-index: 999;
}

.hidden {
    display:none;
}
.fixed {
    position: fixed;
}

.menu {
  padding: 0;
  margin: 0;
  grid-area:menu;
  width:80px;
  height:100%;
  background-color: indianred;
  color: white;
  align-items: center;
  justify-items: center; 
}

/* nav styles */
INPUT.toggle-navigation-x {
    display: none;
}
 
INPUT.toggle-navigation-x + LABEL {
    position: absolute;
    top: 5px;
    left: 20px;
    right: auto;
    bottom: auto;
    height: 40px;
    width: 40px;
    cursor: pointer;
    z-index: 999;
    display: none;
    color:white;
}
 

INPUT.toggle-navigation-x + LABEL {
  display: block;
  background: indianred;
}

input.toggle-navigation-x:checked + label {
  left:0px;
    position:fixed;
    top:10px;
}

INPUT.toggle-navigation-x + LABEL SPAN,
INPUT.toggle-navigation-x + LABEL:before,
INPUT.toggle-navigation-x + LABEL:after {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    bottom: 0;
    transition: all 200ms;
    transform-origin: 0 0 0;
    display: block;
    border-top: 2px solid #fff;
    width: auto;
    height: 0;
    margin: auto 0;
}
 
INPUT.toggle-navigation-x + LABEL:before {
    top: 25%;
    bottom: auto;
}
 
INPUT.toggle-navigation-x + LABEL:after {
    top: auto;
    bottom: 22.5%;
    
}
 
INPUT.toggle-navigation-x:checked + LABEL SPAN {
    opacity: 0;
  
}
 
INPUT.toggle-navigation-x:checked + LABEL:before,
INPUT.toggle-navigation-x:checked + LABEL:after {
    width: 66.6667%;
  background: indianred;
    
}
 
INPUT.toggle-navigation-x:checked + LABEL:before {
    transform: rotate(45deg);
}
 
INPUT.toggle-navigation-x:checked + LABEL:after {
    transform: rotate(-45deg);
     
}
 
INPUT.toggle-navigation-x ~ * {
    transition: transform 300ms;
    
}
 
INPUT.toggle-navigation-x:checked ~ * {
    transform: translatex(240px) !important;
   
}

.circle-chart {
    margin-top:-35px;
    margin-bottom:14px;
}

.circle-chart__circle {
    display: none;
}

@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes circle-chart-fill {
  to { stroke-dasharray: 0 100; }
}



.help-menu {
  grid-area: help-menu;
  width:40px;
  display: grid;
  align-items: center;
  justify-items:center;
  width:40px;
  height:100%;
}
.help-menu:hover {
  background-color: #584750;
}

.logo {
  grid-area: logo;
      font-family: 'Lato', sans-serif !important;
}
.user-logo {
  grid-area: user-logo;
  display: none;
  opacity: 0;
}

/* ######### /END HEADER ######### */


/* ######### MAIN CONTENT ######### */

.maincontent {
    grid-area: maincontent;
    display: grid;
    grid-template-columns:1fr;
    grid-template-areas:
        "loginfield";
    width:100%;
    min-height: 100%;
    background: transparent;
    justify-self:center;
    padding:0px;   
    justify-self:center;
    align-content: center;
    text-align: center;
    margin:0px;
    min-width: 100%;
    
}


.wrapper {
  display: grid;
  grid-area:wrapper;
  grid-template-columns:1fr;
  grid-template-rows:auto;
  grid-template-areas:
    "tops"
    "information";
        -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
}


.top {
    grid-area: tops;
    width:100%;
    height:480px;
  
    background:linear-gradient(141deg, rgba(153,183,193,0.1) 0%, rgba(153,183,193,0.2) 21%, rgba(153,183,193,0.6) 75%
    ), url('../img/background-group-meeting.png') no-repeat;
    background-attachment: fixed;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    
    overflow: hidden;

}

.top video {
    position: relative;
    min-height:100%;
    min-width:100%;
    width:auto;
    height:auto; 
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index:0;  
    max-width:100%;
}




.top h2 {
    position: absolute;
    color:white;
    margin-top: 400px;
    margin-left:60px;
    margin-right:auto;
    font-family: 'Lato', sans-serif !important;
    z-index:2;
    font-weight: 600;
    text-shadow: 0 0 5px black;
    z-index:3;
    
}

.top .logoLine {
    height:3px;
    background: indianred;
    width:140px;
    animation: logoLine 2s linear;
    margin-top:435px;
    margin-left:53px;
    position:absolute;
    z-index:2;
}
@keyframes logoLine {
    from {
        width:0px;
        background: transparent
    }
    to {
        width:140px;
        background: indianred;
    }
}

.information {    
    grid-area:information;
    padding: 0px;
    width:100%;
}

.feedback {
  font-size:14px;
  position: fixed;
  right:20px;
  bottom:0px;
  background: #444;
  color: white;
  height:35px;
  width:150px;
  border-top:1px solid #bbb;
  text-align:center;
  cursor: pointer;
}
.feedback span {
  display: block;
  padding-top:0;
  cursor: pointer;
}

.feedback-type {
  width:520px;
  margin-left:auto;
  margin-right:auto;
}
.feedback-type div {
  width:100%;
  margin-top:10px;
}
.feedback-type div button {
  width: 100%;
}

.feedback-menu {
  display: none;
}

.subtop {
    width:100%;
    height:120px;
    background: linear-gradient(141deg, #99b7c1 0%, #9ab6bd 21%, #354f62 75%);
    background-size:cover;
    text-align: center;
    padding-top:40px;
    color:white;
    font-size:18px;
}

.subtop p {
    margin-top:-5px;
}

@-webkit-keyframes blackblur {
  from { text-shadow: 0 0 20px white; color: transparent; }
  to   { text-shadow: 0;              color: white;       }
}
@keyframes blackblur {
  from { text-shadow: 0 0 20px white; color: transparent; }
  to   { text-shadow: 0;              color: white;       }
}


/* ######### Service ########## */

.a:hover {
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 8px 6px -6px #999;
	   -moz-box-shadow: 0 8px 6px -6px #999;
	        box-shadow: 0 8px 6px -6px #999;

}


/*####################################
############ Loader ################*/

.lds-facebook {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: indianred;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
    background:cadetblue;
}
.lds-facebook div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
    background:#a1d2a1;
}
.lds-facebook div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
    background:indianred;
}

@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}


/*####################################
############# loginfield #########*/

.loginfield {
    grid-area: loginfield;
    width:500px;
    height:auto;
    background:white;
    justify-self:center;
    align-content: center;
    text-align: left;
    color:black;
    padding:10px;
}
.loginfield p {
    font-size:0.8em;
}
.loginfield .loginheader {
    margin:30px;
}

.loginfield .logincontent {
    margin:30px;
}

.loginfield .loginheader img {
    width:30px;
    height:auto;
    margin-right:-5px;
    margin-bottom:-5px;
    
    -webkit-animation:spin 1s linear;
    -moz-animation:spin 1s linear;
    animation:spin 1s linear;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

.loginfield .loginheader h3 {
    margin-top:10px;
}


.input {
    padding:0px;
    padding-bottom:10px;
    margin-top:10px;
    font-size:14px;
    width: 100%;
    border:0px solid #dedede;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    color: #000;
    text-decoration: none;
     transition: all 0.2s ease-in-out;
     transition-delay: 0.1s;
    
}
.input:focus {
    outline-width: 0;
    border:0px;
    border-bottom: 1px solid indianred;
     
     transition: all 0.3s ease-in-out;
     transition-delay: 0.2s;
}


.input-submit {
    float:right;
    margin-top:10px;
    margin-bottom:15px;
}

.success-btn {
    border:1px solid #a1d2a1;
    padding-left:25px !important;
    padding-right:25px !important;
    padding:5px;
}
.inputfield {
    margin-bottom:10px;
    
}

.sms-portal .subtop p {
    margin-top:10px;   
}

    
.sms-portal .arbetsorder {
    background:linear-gradient(141deg, rgba(153,183,193,0.2) 0%, rgba(153,183,193,0.4) 21%, rgba(153,183,193,0.8) 75%
    ), url('../img/background-group-meeting.png') !important;
   background-attachment: fixed !important;
    background-position: bottom left !important;
    background-repeat: repeat !important;
    background-size: 100% auto !important;
    color:white;
}


/*####################################
############# SMS - Portal end #########*/

.service li:nth-last-child(1) {
    border-bottom:0px !important;
}

.service .ul-content {
    margin-left:100px;
    margin-top:-55px;
    margin-bottom:20px;
}

.service ul {
    margin-top:20px;
    font-size:14px;
    border: 0px dashed #eee;
    width:100%;
}

.service ul li i {
    font-size:24px;
    padding:20px 18px 20px 18px;
    border:1px solid black;
    border-radius: 50px;
    margin-top:-3px;
}



.serivce-content-left {
    width:520px;
}


/* ######### LARGE SCREENS ########## */
@media only screen and (max-width: 1690px) {

    

}


/* ######### LARGE SCREENS ########## */
@media only screen and (min-width: 996px) {
.information-portal {
    margin-top:-0px;
    background: linear-gradient(141deg, #ddd 0%, #fff 26%, #ddd 85%);
    padding-bottom:60px;
    margin-bottom:-70px;
    padding-top:30px;
}
    
.arbetsorder {
    background:linear-gradient(141deg, rgba(153,183,193,0.7) 0%, rgba(153,183,193,0.8) 21%, rgba(153,183,193,1) 75%
    ), url('../img/background-group-meeting.png') !important;
   background-attachment: fixed !important;
    background-position: bottom left !important;
    background-repeat: repeat !important;
    background-size: 100% auto !important;
    color:white;
}

}


/* ######### SMALL SCREENS ########## */
@media only screen and (max-width: 996px) {

.loginfield {
    grid-area: loginfield;
    width:90%;
    height:auto;
    background:white;
    justify-self:center;
    align-content: center;
    text-align: left;
    color:black;
    padding:10px;
}
    
    .btn {
        margin-bottom:20px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
 
    
}