.flex {
  display: flex;
}

body {
  margin: 0;
  padding: 0;
}

/* Define Variables */
:root {
  --dgrey: #333;
  --white: #ffffff;
  --teal: #62b3a9;
}

h1, h2, h3, h4, h5, a, p, input, label, li, button, th, td {
  text-decoration: none;
  list-style-type: none;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  margin: 0px;
  padding: 0px;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: var(--dgrey);
}

button {
  cursor: pointer;
}

.error {
  padding: 10px;
  color: red;
}

.text-center {
  text-align: center;
}

.container {
  width: 80%;
  margin: auto;
}

.small-container {
  width: 55%;
  margin: auto;
}

.half {
  width: 50%;
}

.third {
  width: 33.333%;
}

.fourth {
  width: 25%;
}

.space-between {
  justify-content: space-between;
}

.flex-end {
  justify-content: flex-end;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.small-green-button {
  background: var(--teal);
  padding: 6px 16px;
  padding-top: 5px;
  border-radius: 5px;
  display: inline-block;
  color: #FFF;
  font-size: 15px;
  border: none;
  outline: none;
}

td {
  font-size: 14px;
}

form {
  width: 70% !important;
  margin-top: 0px !important;
}
form label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
}
form input[type=email], form input[type=password], form input[type=text] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--dgrey);
  border-radius: 10px;
}
form input[type=number] {
  width: calc(100% - 39px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--dgrey);
  border-radius: 10px;
}
form input[type=checkbox] {
  margin-bottom: 20px;
  width: 20px !important;
  height: 20px;
  cursor: pointer;
}
form select {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--dgrey);
  border-radius: 10px;
}
form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--dgrey);
  border-radius: 10px;
  height: 65px;
}
form h3 {
  font-size: 30px !important;
}
form h4 {
  margin-bottom: 20px;
}
form input {
  padding: 8px !important;
}
form fieldset {
  border: none;
}
form fieldset label {
  margin-left: 20px;
}
form .half input {
  width: 90%;
  margin-bottom: 10px;
}
form .half:nth-child(2) label {
  margin-left: 5%;
}
form .half:nth-child(2) input {
  float: right;
}

.background-red {
  background: red;
}

#myaccount-header {
  background: #282828;
  align-items: center;
  padding: 20px 0px;
}
#myaccount-header > div > .flex {
  gap: 20px;
}
#myaccount-header > div > .flex img {
  width: 80px;
}
#myaccount-header > div > .flex h3 {
  text-transform: uppercase;
  font-size: 30px;
  color: #FFF;
}
#myaccount-header nav {
  gap: 30px;
  justify-content: flex-end;
  align-items: center;
}
#myaccount-header nav a {
  color: #FFF;
  align-items: center;
  gap: 8px;
}
#myaccount-header nav .button {
  background: #62b3a9;
  padding: 8px 12px;
  border-radius: 5px;
  gap: 8px;
}
#myaccount-header nav:nth-child(2) {
  margin-top: 15px;
}

#login-screen form {
  width: 444px;
  margin-top: -100px;
}
#login-screen form h1 {
  font-size: 38px;
  font-weight: 400;
  color: #333;
  text-align: center;
}
#login-screen form h1:nth-child(2) {
  font-weight: 700;
  margin-bottom: 20px;
}
#login-screen form p {
  margin-left: 6px;
}
#login-screen form p.error {
  margin-left: 0px;
  font-size: 14px;
  font-weight: 600;
  color: red;
  margin-top: -10px;
  margin-bottom: 20px;
}
#login-screen form a {
  color: #62b3a9;
  font-size: 16px;
}
#login-screen form button {
  width: 100%;
  background: #62b3a9;
  color: #FFF;
  border: none;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px;
}
#login-screen .right {
  background: url(https://apexit.uk/assets/images/mbr-18.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
}
#login-screen .right img {
  width: 40%;
}

#myaccount-home {
  background: #EEE;
  height: 100vh;
}
#myaccount-home .white-header {
  background: var(--white);
  margin-bottom: 40px;
}
#myaccount-home .white-header .small-container {
  padding: 30px;
}
#myaccount-home .white-header h1 {
  font-weight: 500;
  font-size: 25px;
}
#myaccount-home .tabs .tabs-header {
  gap: 10px;
}
#myaccount-home .tabs .tabs-header .tab-button {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: var(--teal) 1px solid;
  border-bottom: none;
  padding: 10px 14px;
  background: var(--white);
  cursor: pointer;
  gap: 8px;
  align-items: center;
}
#myaccount-home .tabs .tabs-header .tab-button svg {
  width: 25px;
  height: 25px;
}
#myaccount-home .tabs .tabs-header .tab-button h4 {
  color: var(--teal);
  font-weight: 500;
}
#myaccount-home .tabs .tabs-header .tab-button.open {
  background: var(--teal);
  color: #FFF;
}
#myaccount-home .tabs .tabs-header .tab-button.open h4 {
  color: #FFF;
}
#myaccount-home .tabs .tabs-header .tab-button.open svg {
  fill: #FFF;
}
#myaccount-home .tabs .tabs-header .tab-button.open svg path {
  fill: #FFF !important;
}
#myaccount-home .tabs .tab {
  background: var(--white);
  min-height: 400px;
  padding: 20px;
  display: none;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 10px solid var(--teal);
}
#myaccount-home .tabs .tab.open {
  display: block;
}
#myaccount-home .tabs .tab table {
  border-collapse: collapse;
}
#myaccount-home .tabs .tab table th {
  text-align: left;
  color: var(--teal);
  padding: 10px 10px;
}
#myaccount-home .tabs .tab table td {
  padding: 10px 10px;
  border-bottom: 1px solid #EEE;
}
#myaccount-home .tabs .tab button {
  margin-top: 10px;
}
#myaccount-home .packages {
  gap: 40px;
}
#myaccount-home .packages .third {
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
}
#myaccount-home .packages .item-img {
  background-size: cover;
}
#myaccount-home .packages h4 {
  font-size: 22px;
  color: var(--dgrey);
  margin: 10px 0px;
}
#myaccount-home .packages h5 {
  font-size: 20px;
  color: var(--dgrey);
  margin: 10px 0px;
}
#myaccount-home .packages a {
  color: var(--white) !important;
  background: var(--teal);
  display: block;
  border-radius: 5px;
  padding: 6px 0px;
  text-align: center;
}
#myaccount-home .packages .item-img {
  height: 200px;
}
#myaccount-home .packages .starter-plan .item-img {
  background-image: url(https://apexit.uk/assets/images/starter-506x285.jpg);
}
#myaccount-home .packages .expert-plan .item-img {
  background-image: url(https://apexit.uk/assets/images/expert-506x285.jpg);
}
#myaccount-home .packages .professional-plan .item-img {
  background-image: url(https://apexit.uk/assets/images/professional-506x285.jpg);
}
#myaccount-home .packages .enterprise-plan .item-img {
  background-image: url(https://apexit.uk/assets/images/enterprise-506x285.jpg);
}
#myaccount-home .paid {
  background: #dffddf;
}
#myaccount-home .unpaid {
  background: #fddfdf;
}

@media screen and (max-width: 1480px) {
  .small-container {
    width: 90%;
  }
  .container {
    width: 95%;
  }
}
.my-account-home > .flex {
  gap: 30px;
  height: 300px;
}
.my-account-home > .flex .third {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  border: 8px solid var(--teal);
}
.my-account-home > .flex .third h2 {
  font-size: 20px;
  font-weight: 500;
}
.my-account-home > .flex .third h3 {
  font-weight: 500;
  font-size: 15px;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.my-account-home > .flex .third a {
  gap: 6px;
  font-size: 14px;
  align-items: center;
  color: #62b3a9;
  margin-top: 10px;
}
.my-account-home > .flex .third .package {
  margin: 10px 0px;
  margin-bottom: 10px;
}
.my-account-home > .flex .third .package h3 {
  font-size: 22px;
  margin-bottom: 6px;
  margin-top: 0px;
  font-weight: 700;
  color: #333;
}
.my-account-home > .flex .third .package h4 {
  font-size: 18px;
}
.my-account-home > .flex .third.invoice h3 {
  font-weight: 500;
  font-size: 40px;
  margin: 0;
}
.my-account-home > .flex .third.invoice > .flex {
  margin: 10px 0px;
  align-items: center;
}
.my-account-home > .flex .third.invoice h4 {
  background: #6fd561;
  padding: 8px 12px;
  border-radius: 3px;
  gap: 6px;
  max-height: 20px;
  color: #FFF;
  align-items: center;
  font-weight: 500;
}
.my-account-home > .flex .third.invoice h4 img {
  background: #FFF;
  border-radius: 100%;
  display: block;
}

.register {
  height: 100vh;
  min-height: 850px !important;
}
.register > .half {
  height: 100% !important;
}
.register h1 {
  margin-bottom: 20px;
  color: #FFF;
  font-size: 40px;
}
.register .package {
  text-align: center;
  border: 2px solid #FFF;
  border-radius: 10px;
  width: 300px;
  margin: auto;
  padding: 20px 0px;
  margin-bottom: 20px;
}
.register .package h2 {
  font-size: 24px;
  color: #FFF;
}
.register .package h2:nth-child(2) {
  margin-bottom: 10px;
}
.register .package h3 {
  font-size: 15px;
  color: #FFF;
}
.register > div > form > h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.verified {
  margin: 40px 200px;
  border: 1px solid #CCC;
  border-radius: 10px;
  padding: 20px 40px;
}
.verified h2 {
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
}

.super-admin .users h2 {
  font-size: 50px;
  padding: 30px 0px;
}
.super-admin .users table {
  border-collapse: collapse;
}
.super-admin .users tr.paid {
  background: lightgreen;
}
.super-admin .users tr.not-paid {
  background: red;
}
.super-admin .users tr.not-paid td {
  color: #FFF;
}
.super-admin .users td, .super-admin .users th {
  text-align: left;
  padding: 10px 10px;
}
.super-admin .users td {
  border-bottom: 1px solid #FFF;
}
.super-admin h1 {
  padding: 40px 0px;
  color: var(--teal);
}
.super-admin p {
  font-size: 10px;
  margin-bottom: 20px;
}
.super-admin button {
  display: inline-block;
  margin-bottom: 20px;
}
.super-admin .url {
  position: absolute;
  color: #CCC;
  padding: 7px 13px;
  font-size: 15px;
}
.super-admin input[name=link_code] {
  padding-left: 34.5% !important;
  width: calc(66.5% - 20px);
}
.super-admin .grid {
  display: grid;
  grid-template-columns: auto auto auto;
  width: 100% !important;
  gap: 40px;
}
.super-admin .grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
}
.super-admin .grid-item form {
  width: 100% !important;
}/*# sourceMappingURL=index.css.map */