/* Google font */

@import url('https://fonts.googleapis.com/css2?family=Gantari:wght@200;300;400;500;600;700;800;900&display=swap');

/* General */
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Gantari', sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.2px;
    width: 100%;
    overflow-x: hidden;
    background-color: #eee;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
::selection{
    background: #020202 !important;
    color: #fff;
}
a, *::before, *::after, img, span, input, button, .navbar, .fixedmenu {
    color: #501fac;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}
a:active, a:hover {
    color: #e8841b;
    text-decoration: none;
}
.relative {
    position: relative;
}
p:last-child {
    margin-bottom: 0 !important;
}
.mb-20 {
    margin-bottom: 20px;
}

/* Buttons */
.btn-holder {
    margin: 30px 0;
}
.btn {
    -webkit-appearance: initial;
    overflow: hidden;
    position: sticky;
    z-index: 2;
    display: inline-block;
    font-size: 17px;
    border: 2px solid transparent;
    letter-spacing: .5px;
    border-radius: 0;
    text-transform: capitalize;
    width: auto;
    font-weight: 300;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out !important;
    transition: all .2s ease-in-out !important;
}
.btn-orange {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    background: #ff9900;
    padding: 10px 30px;
}
.btn-green {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    background: #00b100;
    padding: 10px 30px;
}
.btn-orange:hover, .btn-orange:focus,
.btn-green:hover, .btn-orange:focus {
    color: #fff;
    background: #501fac;
}

/* Navbar */
.navbar {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 15px;
    z-index: 1030;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
}
.header-appear .navbar {
    padding: 10px 15px;
}
.navbar .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
a.nav-link {
    color: #975ddf;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    position: relative;
}
a.nav-link:hover, a.nav-link:focus {
    color: #975ddf;
}
a.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: #501fac;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.75s ease-in-out;
}
a.nav-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.25s ease-in-out;
}
a.nav-link.active {
    color: #501fac;
}
a.nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: #501fac;
    transform: none;
}
.user-icon {
    margin-left: 20px;
}
.user-icon a i:before {
    color: #501fac;
    font-size: 42px;
}
.user-icon a:hover i:before, .user-icon a:focus i:before {
    color: #975ddf;
}
.logo img {
    width: 220px;
    height: auto;
}

/* Date picker */
.date-holder {
    position: absolute;
    left: 300px;
}
.form-control {
    border: 2px solid #501fac;
    border-radius: 0;
    width: 205px;
}

/* side menu btn */
.sidemenu-btn {
    width: 40px;
    height: 30px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}
.sidemenu-btn .line {
    position: absolute;
    width: 40px;
    background: #501fac;
    height: 3px;
    display: block;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    right: 0;
}
.sidemenu-btn .line-1 {
    top: 0;
}
.sidemenu-btn .line-2 {
    top: 9px;
}
.sidemenu-btn .line-3 {
    top: 18px;
}
.sidemenu-btn:hover .line-1 {
    width: 40px;
    background: #975ddf;
}
.sidemenu-btn:hover .line-2 {
    width: 30px;
    background: #975ddf;
}
.sidemenu-btn:hover .line-3 {
    width: 20px;
    background: #975ddf;
}

/* Side Menu */
.side-menu {
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2500;
    height: 100%;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -o-transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    overflow: hidden;
}
.side-menu.side-menu-active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}

/*side close btn*/
.btn-close {
    height: 40px;
    width: 40px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 4px;
    right: 15px;
    cursor: pointer;
    z-index: 1000;
}
.btn-close::before, .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 40px;
    width: 3px;
    background: #501fac;
    top: 5px;
}
.btn-close:hover::before, .btn-close:hover::after  {
    background: #975ddf;
}
.btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.side-menu .side-nav {
    margin-top: 30px;
    display: block;
}
.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 10px 0; padding: 0 !important;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;
}
.side-nav .navbar-nav .nav-link {
    display: inline-table;
    padding: 2px 0 3px 0 !important;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.side-menu p {
    font-size: 13px;
    margin-top: .5rem;
    margin-bottom: 0;
}
.side-menu p {
    font-size: 13px;
    margin-top: .5rem;
    margin-bottom: 0;
}


/* index content */
main {
    padding-top: 150px;
}
.block-holder {
    background: #fff;
    margin-bottom: 56px;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
}
.park-thumb {
    height: 100%;
}
.park-title {
    background: #501fac;
    color: #fff;
}
.park-title h1 {
    font-size: 30px;
    padding: 10px 15px;
    margin-bottom: 0;
}
.park-state {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.park-state.on {
    background: #00b100;
}
.park-state.off {
    background: #ff9900;
}
.park-state.idle {
    background: #f00;
}
.btn-arrow {
    display: block;
    height: 100%;
}
.btn-arrow a {
    font-size: 80px;
    background: #945add;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-arrow a:hover {
    background: #c28cfb;
}
.btn-arrow a i:before {
    color: #fff;
}
.btn-arrow a:hover i:before {
    color: #501fac;
}
.park-data {
    padding: 15px;
    height: 100%;
}
.park-data h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-break: auto;
}
.park-data p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
}
.park-data span {
    font-size: 48px;
}
.park-data ul {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    padding-left: 22px;
    margin-bottom: 0;
}
.warning1 {
    background: #f3e7ff;
    min-width: 50%;
    width: 100%;
}
.warning2 {
    background: #ebd9ff;
    min-width: 50%;
    width: 100%;
}
.park-data .warnings a span {
    padding-left: 10px;
}
.warnings a {
    font-size: 56px;
}
.warning1 .warnings a i:before {
    color: #ff0000;
}
.warning2 .warnings a i:before {
    color: #ff9900;
}
.data-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    height: 100%;
}
.data-block {
    min-width: 50%;
    max-width: 100%;
    height: auto;
}
.block1 {
    background: #f3f3f3;
}
.block2 {
    background: #eaeaea;
}
.block3 {
    background: #dedede;
}
.block4 {
    background: #d0d0d0;
}

/* Login */
.login-head {
    text-align: center;
    margin-bottom: 30px;
}
.login-head h1 {
    color: #945add;
}
.login-head h2 {
    color: #000;
    margin-bottom: 0;
    margin-top: 30px;
}
.login-content {
    display: flex;
    justify-content: center;
}
.login-btn {
    text-align: center;
}
.login-content .client-data label {
    width: 35px;
    margin-bottom: 0;
}
.login-content i {
    font-size: 30px;
}
.show-btn {
    position: absolute;
    right: 8px;
    top: 5px;
}

/* Order Form */
.form-holder {
    padding: 25px;
    color: #666;
    line-height: 1.5;
}
.logo-form img {
    width: 180px;
    height: auto;
}
.company-data {
    font-size: 14px;
    padding-left: 50px;
    margin-top: 20px;
}
.line-down {
    flex: 1;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.line-right {
    border-right: 1px solid #ccc;
}
.client-data {
    margin-top: 20px;
}
.client-data .form-group {
    display: flex;
    margin-bottom: 15px;
}
.client-data label {
    width: 200px;
}
.client-data .form-control {
    width: 300px;
    background-color: #e9e9e9;
    border: none;
}
.order-title {
    color: #fff;
    background-color: #501fac;
    padding: 5px 20px;
    margin-bottom: 30px;
    display: inline-block;
}
.form-title {
    color: #000;
    margin-bottom: 20px;
}
.form-text {
    font-size: 16px;
}
.form-text span {
    font-weight: 700;
}

/* subscription blocks */
.price-item {
    background-color: #fff;
    height: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    transition: all .5s ease-out;
    z-index: 0;
    -webkit-box-shadow: 0px 10px 20px #aaa;
    box-shadow: 0px 10px 20px #aaa;
    cursor: pointer;
}
.price_header {
    padding: 40px 10px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}
.price-item.price-item-blue .price_header {
    background-color: #501fac;
}
.price-item.price-item-violet .price_header {
    background-color: #975ddf;
}
.price-header-text {
    color: #fff;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
}
.price-header-discount {
    color: #fff;
    font-size: 15px;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
}
.price-item.price-item-blue .price-header-discount {
    background-color: #975ddf;
}
.price-item.price-item-violet .price-header-discount {
    background-color: #501fac;
}
.triangle {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  background: #00b100;
  line-height: 240px;
}
.triangle span {
    color: #fff;

}

/*.price-item::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transform: translateX(calc(-100% - 1px));
    width: 100%;
    height: 100%;
    background: #e9e9e9;
    transition: transform .25s ease-out;
}

.price-item.price-item-blue::before {
    background: #e9e9e9;
}
.price-item.price-item-violet::before {
    background: #e9e9e9;
}*/
.price-item:hover::before {
    transform: translateY(0);
    transition: transform .25s ease-out;
}
.price-list {
    padding: 30px 20px 100px;
    font-size: 20px;
    display: block;
}
.price-title {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.price-extra {
    color: #975ddf;
}
.price-extra-ins {
    color: #975ddf;
    font-size: 13px
}
.actual-price {
    font-size: 24px;
    z-index: 1;
    color: #000;
    text-align: center;
    padding: 0 10px;
    position: relative;
    font-weight: 600;
    font-family: 'Montserrat' , sans-serif;
}
.discount-price {
    text-decoration: line-through;
}
.text-small p {
    font-size: 14px;
}
.bill-sum {
    margin-top: 20px;
    font-size: 16px;
}
.radio-holder {
    margin-top: 50px;
}
.content-grey {
    background-color: #eee;
    padding: 30px 20px;
    margin: 50px 0;
}
.bill-holder {
    position: absolute;
    bottom: 20px;
}
.bill-btn {
    width: 140px;
    height: 50px;
    color: #fff;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    background-color: #975ddf;
}
.active .bill-btn {
    display: none;
}
.bill-check {
    width: 140px;
    height: 50px;
    color: #fff;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    background-color: #00b100;
    display: none;
}
.active .bill-check {
    display: block;
}

.la-check:before {
    color: #fff;
}
.price-list:hover .bill-btn {
    background-color: #ff9900;
}
.font-16 {
    font-size: 16px;
}

/*Radio buttons*/
input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 3px;
  margin-right: 10px;
  background-clip: content-box;
  border: 2px solid #666;
  background-color: #ccc;
  border-radius: 50%;
}

input[type="radio"]:checked + label:before {
  background-color: #00b100;
}

label {
  display: flex;
  color: #000;
  font-size: 16px;
  align-items: center;
}

/* checkbox */
.custom-control-label {
    padding-left: 20px;
}
.custom-checkbox .custom-control-label::before {
    width: 26px;
    height: 26px;
    border-radius: 0;
    background-color: #dfdfdf;
    border: 1px solid #dfdfdf;
    top: 0;
}
.custom-control-label::after {
    width: 26px;
    height: 26px;
    top: 0;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #501fac;
    border: 1px solid #501fac;
}
.check-mar {
    margin-bottom: 10px;
}
.custom-file-input {
    height: 46px;
}
.custom-file-label {
    color: #7f7f7f;
    font-size: 18px;
    letter-spacing: 1px;
    border: 1px solid #0A0A0A;
    background-color: #f5f5f5;
    border-radius: 0;
    padding: 14px 20px;
    height: 57px;
}
.custom-file-label::after {
    content: "Upload";
    font-family: "Roboto", sans-serif;
    height: 55px;
    padding: 10px 20px;
    color: #0A0A0A;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2;
    background-color: #FF715B;
    border-left: none;
    border-radius: 0;
}
.total-freq {
    text-transform: capitalize;
}


/* Footer */
footer {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    background-color: #555;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
}
footer p {
    margin-bottom: 0;
}
footer a {
    color: #ccc;
    display: block;
}
footer a:hover, footer a:focus {
    color: #c28cfb;
}
.table {
    font-size: 1rem;
}
.table ul {
    margin: 0;
}


/* Media Queries */

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 4px 0;
        margin: 0 20px;
    }
}
@media (min-width: 992px) {
    .sidemenu-btn {
        display: none;
    }
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .park-thumb img {
        display: none;
    }
}
@media (max-width: 1199px) {
    main {
        padding-top: 130px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 4px 0;
        margin: 0 8px;
    }
    .date-holder {
        left: 260px;
    }
    .park-data span {
        font-size: 32px;
    }
    .warnings a {
        font-size: 42px;
    }
    .data-block {
        min-width: 100%;
    }
}
@media (max-width: 991px) {
    .navbar {
        padding: 3px 15px;
    }
    .logo img {
        width: 180px;
    }
    .user-icon {
        margin-right: 30px;
    }
    .date-holder {
        left: 240px;
    }
    main {
        padding-top: 100px;
    }
    .btn-arrow a {
        font-size: 48px;
        padding: 5px 0;
    }
    .park-data span {
        font-size: 32px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .data-block {
        min-width: 25%;
    }
    .price-list {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .navbar {
        padding: 3px 15px 60px;
    }
    .date-holder {
        left: 0px;
        top: 60px;
    }
    main {
        padding-top: 150px;
    }
    .park-title h1 {
        font-size: 24px;
    }
    .park-state {
        font-size: 3vw;
    }
    .company-data {
        padding-left: 0px;
        padding-right: 50px;
    }
    .company-data:last-of-type {
        padding-right: 0;
    }
    .line-right {
        border-right: none;
        margin-bottom: 30px;
    }
    .login-content .client-data .form-group {
        display: block;
    }
}
@media (max-width: 575px) {
    .logo img {
        width: 150px;
    }
    .user-icon {
        margin-right: 20px;
    }
    .login-content {
        display: block;
    }
    .client-data .form-group {
        display: block;
    }
    .client-data label {
        width: 100%;
    }
    .client-data .form-control {
        width: 100%;
    }
}
