@charset "UTF-8";
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300|Poppins|Roboto');

/*
* Author: Fredrik Vittfarne <fredrik@oderland.se>
* Date:   May 31st 2017
* Description: Style for our own verification site
* used to verify contact details for ICANN domains.
*
*/

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%; }

* {
  margin: 0;
}

#gradient {
  background: linear-gradient(0deg,#B80001 0%,#D60000 100%);
  padding: 1% 0 3%;
}

body {
  background: white;
  font-size: 20px;
  font-family: 'Montserrat', system-ui, Helvetica, Arial, sans-serif;
}

form {
  max-width: 650px;
  margin: 20px auto;
}

fieldset {
  position: relative;
  border: none;
}

label {
  font-size: 2em;
  position: absolute;
  top: 0.8em;
  color: white;
  transform-origin: left;
  transition: all 0.25s linear;
}

input:focus ~ label {
  color: white;
}
input:focus ~ label,
input:valid ~ label {
  top: 0;
  transform: scale(0.5, 0.5);
}

input {
  font-size: 2em;
  width: 100%;
  border: none;
  margin-top: 1em;
  background: none;
  color: white;
}

input:focus {
  outline: none;
}

.after {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, white 50%, transparent 50%);
  background-color: rgba(0, 0, 0, 0.3);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: all 0.5s linear;
}

input:focus ~ .after {
  background-position: 0 0;
}

.textcursor {
  cursor: text;
}

.button {
  font-weight: bold;
  margin: 0.5em auto;
  padding: 0.8em 1em;
  text-transform: uppercase;
  display: block;
  position: relative;
}

.abutton {
  border: 3px solid #fff;
  border-radius: 6px;
  background: none;
  color: white;
}

.sbutton {
  border: 4px solid #fff;
  border-radius: 12px;
  background: #4163FF;
  color: #fff;
  font-size: 2em;
  width: 100%;
}

.rbutton {
  border: 4px solid #fff;
  border-radius: 12px;
  background: none;
  color: #fff;
  font-size: 2em;
  width: 100%;
}

.langbutton {
  background: none;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  margin: 0.5em auto;
  padding: 0.8em 1em;
  text-transform: uppercase;
  position: relative;
}

.langbutton:hover,
.activebutton
{
  background: white;
  color: #b61c18;
  border-color: #fff;
  cursor: pointer;
}

.button:hover {
  border-color: #fff;
  cursor: pointer;
}

.sbutton:hover {
  color: #fff;
  background: #001ea8;
}

.rbutton:hover {
  color: #B80001;
  background: #fff;
}

.abutton:hover {
  color: #B80001;
  background: white;
}

.langbutton,
.langbutton::after {
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
    transition: all 0.3s;
}

.button,
.button::after {
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
    transition: all 0.3s;
}

.link {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px dotted black;
}

.link:hover {
  color: #b61c18;
  border-bottom: 1px dotted #b61c18;
}

.mlink {
  color: inherit;
}

.rubrik {
  margin: 0 1.5%;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

h2 {
    font-size: 25pt;
}

.huvudrubrik {
  color: white;
  margin: 0.5%;
  text-align: center;
}

.onecont h2 {
  text-align: center;
}


.text {
  font-size: 17pt;
  line-height: 1.55;
  font-style: normal;
  font-weight: 300;
}

.onecont {
  margin: 0;
  min-height: 25vh;
  padding: 3% 20% 0;
}

#langchooser {
  margin: 0;
  padding: 0 20%;
  color: white;
  text-align: center;
}

#con1 {
  padding-top: 0;
  /* background: #b61c18; */
  color: white;
}

#con2 {
  background: #fff;
  color: #111;
}

#con3 {
  background: #fff;
  color: #111;
  padding-bottom: 3%;
}

.odlogo {
    max-width: 250px;
    display: block;
    margin: 0.5% auto;
}

.question {
    font-weight: bold;
    margin-top: 3%;
}

.topspace {
    margin-top: 3%;
}


/*
** Messages
*/


.info-msg,
.success-msg,
.warning-msg,
.error-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
  text-align: center;
}
.info-msg {
  color: #fff;
  background-color: #333;
}
.success-msg i {
    color: #2ecc71;
}
.success-msg {
  color: #fff;
  background-color: #333;
}
.warning-msg i {
    color: #9F6000;
}
.warning-msg {
  color: #333;
  background-color: #FEEFB3;
}
.error-msg i {
    color: #b61c18;
}
.error-msg {
  color: #333;
  background-color: #FEEFB3;
}




/* Back to oderland.se link */
#header-links {
    font-weight: 400;
    font-style: normal;
    background-color: #262626;
    padding: 4px 0px 4px 20px;
    font-size: 14px;
    height: 22px;
    position: relative;
}

#header-links a {
    color: #f4f5f5;
    text-decoration: none;
}

#header-links i {
    color: #f4f5f5;
    transition: 0.3s;
}

#oderland-link {
    position: absolute;
    top: 5px;
    left: 1.5%;
}

#oderland-link i {
    border: solid #f4f5f5;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

#oderland-link:hover i {
    border-color: #b61c18;
    transition: 0.3s;
}

#social-links {
    position: absolute;
    right: 1.5%;
}

#social-links i {
    margin-left: 10px;
    font-size: 20px;
}

#social-links span:hover .fa-facebook-official {
    color: #3b5998;
    transition: 0.3s;
}

#social-links span:hover .fa-twitter {
    color: #1da1f2;
    transition: 0.3s;
}

.robotofont {
    font-family: Roboto, Helvetica, Arial, sans-serif;
}


@media (max-width: 600px) {
  .onecont {
    padding: 2.5% 4%;
  }
}