* {
    margin: 0;
    padding: 0;
    line-height: 150%;
    font-family: Calibri, sans-serif;
}

body {
    height: 100%;
}


::selection {
  background: #cecece; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #cecece; /* Gecko Browsers */
}



/* Navbar  */

#navbar {
    line-height: 100%;
    width: 100%;
    margin-bottom: 10px;
    float: right;
    list-style-type: none;
    background-color: var(--main);
    position: fixed;
    z-index: 9;
    font-size: 0;




    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */

    -o-user-select: none;
    user-select: none;
}

.navbarElement {
    display: inline-block;
}

.navbarLink {
    display: block;
    z-index: 10;
    text-decoration: none;
    font-size: 20px;
    padding: 17px 32px 17px 32px;
    color: white;
    transition: 0.2s;
    cursor: pointer;
}

.navbarLink:hover {
    background-color: white;
    color: black;
}


.rightElement {
    float: right !important;
}






#navbar2{

  font-size: 0;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */

  -o-user-select: none;
  user-select: none;

}


.navbar2Element {
    display: inline-block;
}

.navbar2Link {
    display: inline-block;
    text-decoration: none;
    font-size: 24px;
    padding: 10px 20px 10px 20px;
    color: black;
    transition: 0.2s;
    cursor: pointer;
    margin: 20px;
    border-bottom: solid var(--main) 2px;
}


/* End navbar */

.title {
    font-size: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--main);
    text-align: center;
    top: 50px;
}

.subtitle {
    font-size: 24px;
    color: var(--main);
    text-align: center;
    top: 50px;
}

.noSelect {
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Likely future */
    /* https://css-tricks.com/almanac/properties/u/user-select/  */
}

.material-icons{

  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
  /* https://css-tricks.com/almanac/properties/u/user-select/  */

}

/* Light Button */

.btnLight {
    color: var(--main);
    font-size: 24px;
    border: 1px solid var(--main);
    border-radius: 5px;
    padding: 5px 15px 5px 15px;
    background-color: white;
    text-decoration: none;
    transition: 0.2s;

    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Likely future */
    /* https://css-tricks.com/almanac/properties/u/user-select/  */


    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btnLight:hover {
    background-color: var(--second);
    cursor: pointer;
    color: white;
    border-color: var(--second);
}

/* Dark Button */

.btnDark {
  color: white;
  font-size: 24px;
  background-color: var(--main) !important;
  border: 1px solid var(--main);
  border-radius: 5px;
  padding: 5px 15px 5px 15px;
  background-color: white;
  text-decoration: none;
  transition: 0.2s;

    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Likely future */
    /* https://css-tricks.com/almanac/properties/u/user-select/  */


    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btnDark:hover {
    color: var(--main);
    background-color: white !important;
}

.hidden {
    display: none;
}

/* Input */

.input {
    font-size: 24px;
    border: 2px solid var(--main);
    border-radius: 5px;
    height: 40px;
}

input{

  overflow: auto;
  outline: none;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  border: solid black 1px;
  border-radius: 5px;
  padding-left: 10px;


}


input[type=file]{

  display: none;

}

.fileInputLabel{

  border: solid var(--main) 1px;
  color: white;
  background-color: var(--main);
  padding: 10px;

}

.fileInputLabel:hover{

  cursor: pointer;

}


/* Status bar */

#status {
    position: fixed;
    bottom: 0;
    width: 100% !important;
    list-style-type: none;
    z-index: 9;

    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */

    -o-user-select: none;
    user-select: none;
}

#status li {
    padding: 15px;
    cursor: pointer;
    text-align: center;
    font-size: 24px;
    -webkit-font-smoothing: antialiased;

}

#status li img{
    margin-top: 8px;
    float: right;
}


.statusCloseIcon{

  display: block;

  /*z-index: 10000;*/

}

.success {
    background-color: lime;
}

.error {
    background-color: red;
}

.message {
    background-color: blue;
    color: white;
}

/* End status bar */

textarea {
    resize: none;
    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    border: solid black 1px;
    border-radius: 5px;
}

section {
    width: 95%;
    margin: auto;
    padding-top: 50px;
}

.siteContainer {
    border: solid 2px var(--main);
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.textContainer2 {
    padding: 10px;
    width: calc(40% - 25px);
    float: right;
    height: 80%;
}

.siteiframe {
    margin: 10px;
    width: calc(60% - 25px);
    height: 620px;
    z-index: -10;
    border-right: 2px solid var(--main);
}

.siteTitle {
    color: var(--main);
    font-size: 30px;
    text-align: center;
}

.siteDesc {
    padding-top: 25px;
    font-size: 18px;
}

#footer {
    position: absolute;
    font-size: 20px;
    height: auto;
    color: white;
    width: 100%;
    text-align: center;
    background-color: var(--main);

    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */

    -o-user-select: none;
    user-select: none;
}

.footerEl {
    display: block;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: var(--main);
}

.footerEl a {
    color: white;
    text-decoration: none;
}

.footerEl a:hover {
    text-decoration: underline;
    cursor: pointer;
}


.liimg{

  width : 100px;
  height: 100px;
  display: inline-block;


}

#mailImg{

  width : 130px;
  height: 100px;
  margin-right: 20px;

}

.getImg{

  height: auto;
  width: auto;
  max-width: 300px;
  max-height: 300px;


}

.userLink{

  text-decoration: none;
  color: black;
  transition: 0.2s;

}

.userLink:hover{

  cursor: pointer;
  color: var(--main);

}

.link{

  text-decoration: none;
  color: var(--main);

}

.submittedLink{

  text-decoration: none;

}

.submittedLink:hover{

  text-decoration: underline;

}


#moreSign{

  display: none;

}

.mobile{

  display: none;
  visibility: hidden;

}

.fa {
    text-decoration: none;
    background-color: white;
    padding: 10px;
    color: black;
    font-size: 24px !important;
    margin: 2px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
}


.fa:hover {

  background-color: #d9dadb;

}


.quote{

  background-color: var(--second);
  padding: 10px;
  border-radius: 10px;

}

.close:hover{

  cursor: pointer;

}



.share{

  padding: 10px;
  background-color: var(--main);
  height: 30px;
  border-radius: 5px;

}



.shareImg{

  width: 20px;
  height: 20px;
  padding:  5px;
  border-radius: 5px;

}

.shareImg:hover{

  cursor: pointer;
  background-color: var(--second);
  transition: 0.2s;

}

.mess{

  	display: none;

}




@media only screen and (max-width: 1000px) {


  .title{

    position: inherit;

  }

  .wrap{

    height: 0px;
    -webkit-transition: height 0.2s; /* Safari */
    transition: height 0.2s;
    color: var(--main);

  }

  .mobile{

    display: block;
    visibility: visible;
    padding: 20px;

  }

  .LWlink{

      color: white;
    text-decoration: none;
    height: 40px;
    padding: 10px;
    font-size: 20px;

  }




    #navbar {
        width: 100%;
        position: relative;

    }

    .navbarLink{

        transition: 0s;
        color: var(--main);
        padding: 8px 12px 8px 12px;
        font-size: 20px;
        text-align: center;



    }

    .navbarLink:hover{

      color: white;
      background-color: inherit;


    }

    .navbarElement{

      display: none;

    }



    #moreSign{

      display: block;
      float: none !important;

    }

    .moreSignLink{

      color: white;
      width: 28px;
      height: 20px;
      padding: 16px 12px;
      text-align: center;
      margin-left: calc(100% - 52px);
    }


    .rightElement{

      float: none !important;

    }

    .navbar2Link{

        padding: 6px 10px 6px 10px;
        margin: 5px;
        margin-top: 50px;
        font-size: 20px;

    }

    .siteiframe {
        display: none;
    }

    .textContainer2 {
        width: 95%;
        border-bottom: 2px solid var(--main);
    }

    .btnLight {
        margin-top: 10px;
        width: 100px;
        font-size: 32px;
    }

    .siteContainer {
        border: none;
    }

    section {
        border: none;
        padding-top: 25px;
    }

    #status {
        font-size: 5vw;
    }

    #status li{

      -webkit-font-smoothing: antialiased;

    }

    .getImg{

      max-width: 200px;
      max-height: 200px;

    }


    .quote{

      border-radius: 0px;
      border: none;

    }

    textarea{

      border-radius: 0px;

    }

    input{

      border-radius: 0px;

    }


    .share{

      margin-left: -6px;
      margin-top: 20px;
      width: calc(100% - 8px);
      border-radius: 0px;

    }



}


@media only screen and (max-width: 800px) {

  .mess{

    display: inline;

  }


}
