﻿/**
    Variables container

    For more Bootstrap vars check "../plugins/bootstrap-4/scss/variables",
    but don't modify the source file, all variables should be overriden here
*/
/******************************************************************
App
******************************************************************/
/******************************************************************
Components
******************************************************************/
/******************************************************************
Bootstrap
******************************************************************/
/*@mixin responsive_extra_min {
    @media (min-width:($breakpoint-lg)) {
        @content;
    }
}*/
/*@mixin responsive_desktop_min {
    @media (min-width:($breakpoint-lg)) {
        @content;
    }
}*/
/*@mixin responsive_tablet_min {
    @media (min-width:($breakpoint-md)) {
        @content;
    }
}*/
/*@mixin responsive_medium_min {
    @media (min-width:($breakpoint-sm)) {
        @content;
    }
}*/
/*@mixin responsive_mobile_min {
    @media (min-width:($breakpoint-xs)) {
        @content;
    }
}*/
/******************************************************************
 RESET CSS - Normalize
******************************************************************/
body, img, p, h1, h2, h3, h4, h5, fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  resize: none;
}

a:hover {
  text-decoration: none !important;
}

input[type=submit] {
  cursor: pointer;
}

*:focus {
  outline: none;
}

::selection {
  background: #000;
  color: #fafafa;
}

::-moz-selection {
  background: #000;
  color: #fafafa;
}

._v-align {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

.relative {
  position: relative;
}

.unstyled {
  background: none;
  border: 0;
  box-shadow: none;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

/******************************************************************
Geral Html
******************************************************************/
body {
  overflow-x: hidden;
}

#ErrorPage {
  text-align: center;
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
}
#ErrorPage .info {
  width: 760px;
  height: 760px;
  border-radius: 50%;
  box-shadow: 0 0 80px 30px rgba(74, 74, 74, 0.1);
  display: flex;
  align-items: center;
  margin: auto;
  position: relative;
  overflow: hidden;
}
#ErrorPage .info__text {
  margin: auto;
  font-family: "Poppins", sans-serif;
  color: #112ada;
}
#ErrorPage .info__text .logo {
  display: block;
  max-width: 400px;
  margin: auto;
}
#ErrorPage .info__text .logo img {
  max-width: 100%;
}
#ErrorPage .info__text h1 {
  font-size: 7.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120px;
  margin: 30px 0;
}
#ErrorPage .info__text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 30px;
}
#ErrorPage .info__text p {
  font-size: 1rem;
  font-weight: 400;
  max-width: 280px;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}
#ErrorPage .info__text a.btn {
  background-color: white;
  color: #112ada;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #112ada;
  padding: 10px 25px;
  text-align: center;
  border-radius: 35px;
  text-decoration: none;
  box-shadow: 0 0 30px 5px rgba(17, 42, 218, 0.2);
  position: relative;
}
#ErrorPage .info__text a.btn:before {
  content: "";
  background-image: url("/Content/imgs/icons/quote-left.png");
  background-repeat: no-repeat;
  width: 29px;
  height: 52px;
  display: block;
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#ErrorPage .info__text a.btn:after {
  content: "";
  background-image: url("/Content/imgs/icons/quote-right.png");
  background-repeat: no-repeat;
  width: 29px;
  height: 52px;
  display: block;
  position: absolute;
  right: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#ErrorPage .info:after {
  content: "";
  background-image: url("/Content/imgs/icons/hand.png");
  background-repeat: no-repeat;
  width: 165px;
  height: 226px;
  display: block;
  position: absolute;
  right: 50px;
  top: 285px;
  bottom: 0;
  margin: auto;
}

@media (max-width: 1024px) {
  #ErrorPage .info {
    width: 600px;
    height: 600px;
  }
  #ErrorPage .info__text h1 {
    font-size: 6.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100px;
    margin: 20px 0;
  }
  #ErrorPage .info__text h3 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
  }
  #ErrorPage .info__text p {
    font-size: 1rem;
    font-weight: 400;
    max-width: 280px;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
  }
  #ErrorPage .info:after {
    content: "";
    background-image: url("/Content/imgs/icons/hand.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 130px;
    position: absolute;
    right: 32px;
    top: 260px;
  }
}
@media (max-width: 599px) {
  #ErrorPage .info {
    width: 320px;
    height: 320px;
    box-shadow: 0 0 50px 5px rgba(74, 74, 74, 0.1);
  }
  #ErrorPage .info__text .logo {
    display: block;
    margin: auto;
    max-width: 150px;
  }
  #ErrorPage .info__text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 36px;
    margin: 15px 0;
  }
  #ErrorPage .info__text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 15px;
  }
  #ErrorPage .info__text p {
    font-size: 0.8125rem;
    font-weight: 400;
    max-width: 200px;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }
  #ErrorPage .info__text a.btn {
    background-color: white;
    color: #112ada;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #112ada;
    padding: 5px 15px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 0 20px 5px rgba(17, 42, 218, 0.2);
    position: relative;
    font-size: 13px;
  }
  #ErrorPage .info__text a.btn:before {
    content: "";
    background-image: url("/Content/imgs/icons/quote-left.png");
    width: 15px;
    background-size: contain;
    position: absolute;
    left: -30px;
  }
  #ErrorPage .info__text a.btn:after {
    content: "";
    background-image: url("/Content/imgs/icons/quote-right.png");
    width: 15px;
    background-size: contain;
    position: absolute;
    right: -30px;
  }
  #ErrorPage .info:after {
    content: "";
    background-image: url("/Content/imgs/icons/hand.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    position: absolute;
    right: 0px;
    top: 210px;
  }
}
@media (max-width: 339px) {
  #ErrorPage .info {
    width: 280px;
    height: 280px;
  }
  #ErrorPage .info__text .logo {
    display: block;
    margin: auto;
    max-width: 120px;
  }
  #ErrorPage .info__text h1 {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    margin: 15px 0;
  }
  #ErrorPage .info__text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 15px;
  }
  #ErrorPage .info__text p {
    font-size: 0.8125rem;
    font-weight: 400;
    max-width: 200px;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }
  #ErrorPage .info__text a.btn {
    background-color: white;
    color: #112ada;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #112ada;
    padding: 5px 15px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 0 20px 5px rgba(17, 42, 218, 0.2);
    position: relative;
    font-size: 13px;
  }
  #ErrorPage .info__text a.btn:before {
    content: "";
    background-image: url("/Content/imgs/icons/quote-left.png");
    width: 12px;
    height: 23px;
    background-size: contain;
    position: absolute;
    left: -25px;
  }
  #ErrorPage .info__text a.btn:after {
    content: "";
    background-image: url("/Content/imgs/icons/quote-right.png");
    width: 12px;
    height: 23px;
    background-size: contain;
    position: absolute;
    right: -25px;
  }
  #ErrorPage .info:after {
    content: "";
    background-image: url("/Content/imgs/icons/hand.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    position: absolute;
    right: 0px;
    top: 220px;
  }
}
