
/*
###########
## LOGIN ##
###########
*/

.login-page {
  background: rgb(27,20,100);
  background: linear-gradient(90deg, rgba(27,20,100,1) 0%, rgba(13,183,237,1) 100%);
  padding:0px 20px;
}

.login-img {
  display: block;
  width:430px;
  max-width:100%;
  margin: auto;
}

.login {
    width: 450px;
    max-width: 100%;
    margin: 20px auto 50px auto;
    padding:40px;
    background-color: white;
    border-radius:20px;
    box-shadow: 0px 0px 2px #d3d3d3;
}

.login h1 {
  text-align: center;
}


.login-home a {
    background-color:rgb(76, 175, 79);
    padding: 10px;
    color:black;
    border-radius:30px;
}

.login-home a:hover {
    background-color:rgb(76, 175, 79);
    transform: scale(1.5);
    -webkit-transform:scale(1.5);
    -o-transform:scale(1.5);
    -moz-transform:scale(1.5);
    color:white;
    transition:0.3s;

}

div#login {
    padding:30px;
    max-width:600px;
    display:block;
    margin:auto;
}

.login input[type=text], .login input[type=password] {
    width:100%;
    display:block;
    font-size:20px;
    margin:0px auto 10px auto;
    padding:5px 12px;
    border-radius: 5px;
    border: 1px solid rgb(206, 206, 206);
}

.login label {
  margin-bottom: 0;
  font-weight: 500;
}

.login button {
  outline:none;
  border:none;
  background:#ED830D;
  width:100%;
  color:white;
  padding:5px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #cccccc;
}

p.alert {
    color:rgb(219, 64, 64);
    padding:5px;
    text-align:center;
    margin:auto;
    margin-top:0px;
    margin-bottom:0px;
    width:100%;
    font-size:18px;
    font-family: roboto;
    font-weight: 300;
}

p.alert.good {
    color: white;
    background-color: rgb(101, 199, 101);
    box-shadow: 0px 0px 5px rgba(39, 39, 39, 0.315);
}

p.alert.bad {
    color: white;
    background-color: rgb(204, 76, 76);
    box-shadow: 0px 0px 5px rgba(39, 39, 39, 0.315);
}

p.message {
    background-color:#e6e7e9;
    padding:10px;
    border:solid black 0.5px;
    display:inline-block;
}

/*
button[type=submit] {
    padding:10px;
    font-size:20px;
    border:none;
    width:100%;
    cursor: pointer;
    display:block;
    margin:auto;
    background-image: linear-gradient(to bottom right,rgb(76, 175, 79),rgb(93, 183, 96));
}*/

input[type=checkbox] {
    display:inline-block;
    text-align:center;
    margin-right:0px;
    width:50px;
}




/*
############
## HEADER ##
############
*/

.header {
    display: block;
    padding:5px;
    background-color: bisque;
}


/*
##########
## MENU ##
##########
*/

:root {
  font-size: 16px;
  color: #444;
  font-family: sans-serif;
  --text-primary: #b6b6b6;
  --text-secondary: #ececec;
  --bg-primary: #23232e;
  --bg-secondary: #141418;
  --transition-speed: 600ms;
}

body {
  color: #444;
  font-family: sans-serif;
  background-color: white;
  margin: 0;
  padding: 0;
}

body::-webkit-scrollbar {
  width: 0.25rem;
}

body::-webkit-scrollbar-track {
  background: #1e1e24;
}

body::-webkit-scrollbar-thumb {
  background: #6649b8;
}


.navbarer {
    position: fixed;
    z-index: 10;
    left: 0;
    height:100%;
    background-color: var(--bg-primary);
    transition: width 600ms ease;
    overflow: hidden;
    width:16rem;
}

.main.row {
    margin-left:16rem;
    background-color:#F7F7F7;
    width: calc(100% - 16rem);
    padding-top:40px;
    min-height: 100vh;
}

.navbar-nave {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.nav-item {
  width: 100%;
}
/*
.nav-item:last-child {
  margin-top: auto;
}
*/
.nav-linker {
  display: flex;
  align-items: center;
  height: 5rem;
  color: var(--text-primary);
  text-decoration: none;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition-speed);
}

.nav-linker:hover {
  text-decoration: none;
  filter: grayscale(0%) opacity(1);
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.link-text {
  margin-left: 1rem;
  font-size: 20px;
}

.nav-linker svg {
  width: 2rem;
  min-width: 2rem;
  margin: 0 1.5rem;
}

.fa-primary {
  color: #ff7eee;
}

.fa-secondary {
  color: #df49a6;
}

.fa-primary,
.fa-secondary {
  transition: var(--transition-speed);
}

.logo {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  font-size: 1.5rem;
  letter-spacing: 0.3ch;
  width: 100%;
}

.logo svg {
  transform: rotate(0deg);
  transition: var(--transition-speed);
}

.logo-text
{
  display: inline;
  position: absolute;
  left: -999px;
  transition: var(--transition-speed);
}

.navbar:hover .logo svg {
  transform: rotate(-180deg);
}

.info {
  background-color: white;
  position: relative;
  padding:10px;
  height: 100%;
  box-shadow: 0px 0px 5px #cccccc;
}

.info .logout {
  bottom:20px;
  display: block;
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
  text-align: center;
  color: #212529;
  padding:5px 10px;

}

.info p {
  margin:0;
  font-size:14px;
}

.info p.stat {
  color:white;
  padding:7px 20px;
  font-size:16px;
  text-align: center;
  border-radius: 3px;;
  display: block;
  margin-top:10px;
}

.info p.stat.closed {
  background-color: rgb(219, 64, 64);
}

.info p.stat.open {
  background-color: green;
}
.info p.stat.pending {
  background-color: #ED830D;
}
.info p.stat.accepted {
  background-color: rgb(169, 13, 184);
}
.info p.stat.production {
  background-color: #013368;
}
.info p.stat.complete {
  background-color: green;
}

.info a.action {
  background-color:#ED830D;
  color:white;
  display: block;
  width:100%;
  text-align:center;
  padding:5px 10px;
  border-radius: 3px;
  margin-top:20px;
}

/* Small screens */
@media only screen and (max-width: 600px) {
    .main.row {
      margin-left:0px;
      width: 100%;
      padding-bottom:3rem;
    }

    .navbarer {
      bottom:0px;
      width: 100vw;
      height: 3rem;
      display: flex;
    }

    .info {
      border-style: 0;
      border-top: 1px solid rgb(180, 180, 180);
      box-shadow: 0px 0px 5px #cccccc;
    }
  
    .nav-item:last-child {
      margin-top: 0;
    }
    .logo {
      display: none;
    }
  
    .navbar-nave {
      flex-direction: row;
    }

    a {
      white-space: nowrap;
      display: block;
      margin:5px 0px;
    }
    
    .nav-linker {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 5rem;
      color: var(--text-primary);
      text-decoration: none;
      filter: grayscale(100%) opacity(0.7);
      transition: var(--transition-speed);
    }

    .nav-item {
      width: 100%;
    }
  
    main {
      margin: 0;
      width:100%;
    }

    .link-text {
      display: none;
    }
  }
  
  /* Large screens */
  @media only screen and (min-width: 600px) {
    .navbarer {
      top: 0;
      width: 5rem;
      height: 100vh;
    }
  
    .navbarer {
      width: 16rem;
    }

    .navbar-nave {
      flex-direction: column;
    }
  
    .navbarer .link-text {
      display: inline;
    }
  
    .navbarer .logo svg
    {
      margin-left: 11rem;
    }
  
    .navbarer .logo-text
    {
      left: 0px;
    }
  }
  
  .dark {
    --text-primary: #b6b6b6;
    --text-secondary: #ececec;
    --bg-primary: #23232e;
    --bg-secondary: #141418;
  }
  
  .light {
    --text-primary: #1f1f1f;
    --text-secondary: #000000;
    --bg-primary: #ffffff;
    --bg-secondary: #e4e4e4;
  }
  
  .solar {
    --text-primary: #576e75;
    --text-secondary: #35535c;
    --bg-primary: #fdf6e3;
    --bg-secondary: #f5e5b8;
  }

  .saura {
    --text-primary: white;
    --text-secondary: white;
    --bg-primary: #ED830D;
    --bg-secondary: rgb(231, 151, 59);
  }
  
  .theme-icon {
    display: none;
  }
  
  .dark #darkIcon {
    display: block;
  }
  
  .light #lightIcon {
    display: block;
  }
  
  .solar #solarIcon {
    display: block;
  }

  .saura #solarIcon {
    display: block;
  }

  /*
  ############
  ## Stripe ##
  ############
  */

.StripeElement {
    box-sizing: border-box;

    height: 40px;

    padding: 10px 12px;

    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;

    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/*
############
## TOPBAR ##
############
*/

.topbar {
    position: absolute;
    top:0;
    z-index: 5;
    width:100%;
    color:rgb(58, 58, 58);
    background-color: white;
    border-bottom: 1px solid rgb(180, 180, 180);
    box-shadow: 0px 0px 5px #cccccc;
    text-align: right;
}

.topbar p {
    margin:10px 20px;
}





.mainer {
  padding:20px;
  color: #444;
  font-family: sans-serif;
}

.mainer h1 {
  display: inline;
}

.mainer h2 {
  margin-bottom:30px;
}

.services-link {
  display: block;
  color:inherit;
}

.services-link:hover {
  text-decoration: none;
  color:inherit;
}

.services-link:hover .services {
  box-shadow: 0px 0px 15px rgba(175, 175, 175, 0.836);
  transform: scale(1.03);
}

.services {
  box-shadow: 0px 0px 5px rgba(175, 175, 175, 0.521);
  border-radius: 5px;
  width:380px;
  margin:30px auto;
  max-width:100%;
  background-color: white;
  text-align: center;
  border: 1px solid #acacacb4;
  transition: ease-in-out .2s;
}

.services img {
  display: block;
  max-width:100%;
  width:200px;
  padding-top:20px;
  margin:auto;
}

.services h4 {
  margin: 5px 10px 20px 10px;
}

.info-table {
  box-shadow: 0px 0px 5px rgba(175, 175, 175, 0.521);
  border-radius: 3px;
  max-width:100%;
  background-color: white;
  text-align: left;
  border: 1px solid #acacacb4;
  margin: 30px 0px;
}

.info-table .table-header {
  position: relative;
  padding:10px;
}

.info-table .table-header::after {
  content: " ";
  display: block;
  position: absolute;
  height: 1px;
  background: #acacacb4;
  width:calc(100% - 20px);
  bottom:0px;
}

.info-table .table-header .new {
  float: right;
  background-color: #ED830D;
  color:white;
  padding: 5px 10px;
  border-radius: 3px;
  transition: ease-in-out .2s;
}

.info-table .table-header .new:hover {
  text-decoration: none;
  background-color: #1B1968;
}

.info-table .table-header h3 {
  display: inline-block;

}

.info-table .table-contents ul {
  padding:0;
  margin: 10px 0px;
  list-style: none;
}

.info-table .table-contents ul li {
  padding:10px;
  transition: ease-in-out .2s;
}

.info-table .table-contents ul li:hover {
  background-color: #ebebeb9d;
}

.info-table .table-contents a:hover {
  text-decoration: none;
}

.info-table a.action {
  background-color:#ED830D;
  color:white;
  padding:7px 10px;
  border-radius: 3px;
  transition: ease-in-out .2s;
}

.info-table a.action:hover {
  text-decoration: none;
  background-color: #1B1968;
}

span.hosting {
  color:#ED830D;
  font-size:20px;
  display: block;
}


span.domain {
  color:rgb(124, 124, 124);
  font-size:16px;
  display: block;
}

span.title {
  color:#ED830D;
  font-size:20px;
}

span.status {
  font-size:16px;
  color:white;
  padding:0px 2px 3px 2px;
}

span.status.good {
  background-color: green;
}

span.status.bad {
  background-color: rgb(248, 63, 63);
}

span.domain-status.good {
  color:green;
}

span.time {
  color:rgb(124, 124, 124);
  font-size:16px;
  display: block;
}

span.invoice-deetils {
  color:rgb(46, 46, 46);
  font-size:16px;
  display: block;
}


.info-table .table-contents table {
  width: 100%;
}

.info-table .table-contents td,
.info-table .table-contents th {
  padding:10px;
}

.info-table .table-contents tr {
  width:100%;
  border-bottom: 1px solid #acacacb4;
}

.info-table .table-contents tr:hover td span.title{
  text-decoration: underline;
}

.info-table .table-contents tr:hover {
  cursor: pointer;
}



.page-link {
  float:right;
}



.ticket-reply .message {
  display: block;
  width:100%;
  background-color: white;
  padding:5px 10px;
  border-left: 5px solid #ED830D;
  margin: 20px 0px;
  box-shadow: 0px 0px 15px #cccccc;
}

.ticket-reply .message p {
  margin:0;
}

.ticket-reply form {
  width:100%;
}

.ticket-reply textarea {
  display: block;
  width:100%;
  height:250px;
  border-radius:3px;
}

.ticket-reply input[type=submit],
.ticket-open input[type=submit] {
  border: none;
  background-color: #ED830D;
  border-radius:5px;
  color:white;
  font-size:20px;
  padding:5px 10px;
  margin: 10px 0px;
  margin-left:15px;
}

.ticket-reply input[type=submit] {
  margin-left:0px;
}

.ticket-info h3 {
  margin-bottom: 20px;
}

.ticket-info p {
  margin:0;
}

.ticket-info .message-container {
  margin-top:20px;
}

.ticket-info .user {
  display: inline-block;
  vertical-align: top;
  margin:20px 0px;
  width:50px;
}

.ticket-info .user img {
  max-width:100%;
}

.ticket-info .message {
  display: inline-block;
  background-color: white;
  width: calc(100% - 70px);
  margin:20px 0px 20px 10px;
  box-shadow: 0px 0px 15px #cccccc;
  border-radius:5px;
  padding:10px 15px;
}

.ticket-info .message h4 {
  font-size:20px;
  margin-bottom:20px;
}

.ticket-info .message span.msg {
  white-space: pre-wrap;
  font-size:18px;
}

.ticket-info .message span.time {
  font-size:16px;
  color:rgb(156, 156, 156);
  margin-top:20px;
}







.ticket-open input[type=text] {
  display: block;
  width:100%;
  margin-bottom: 10px;
  padding:5px 10px;
  border: 1px solid #A9A9A9;
  border-radius: 3px;
  font-size: 18px;
}

.ticket-open input[read-only] {
  background-color: transparent;
  border:none;
  padding:0;
}

.ticket-open input[read-only]:focus {
  outline:none;
}

.ticket-open label {
  margin: 25px 0px 5px 0px;
  font-weight: 600;
}

.ticket-open label.radio {
  margin: 3px 0px;
  font-weight: 400;
}

.ticket-open textarea {
  display: block;
  width: 100%;
  border-radius:3px;
  height:250px;
  margin-bottom:30px;
}

.ticket-priority {
  background-color: rgba(14, 171, 228, 0.24);
  height: 100%;
  padding:10px 15px;
  color:rgb(54, 54, 54);
}

.ticket-open .container {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-top:7px;
  padding-bottom:5px;
  margin:0;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

.ticket-open .container span {
  display: block;
}

.ticket-open .container span.high {
  color: #ED830D;
  font-weight: 600;
}

.ticket-open .container span.low {
  color: #4EB99C;
  font-weight: 600;
}

.ticket-open .container span.priority-info {
  font-size: 14px;
  font-weight: 400;
}

.ticket-open .select-css {
	display: block;
	font-size: 18px;
	font-family: sans-serif;
	font-weight: 400;
	color: #444;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #aaa;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	border-radius: 3px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}

.ticket-open .select-css::-ms-expand {
	display: none;
}

.ticket-open .select-css:hover {
	border-color: #888;
}

.ticket-open .select-css:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}

.ticket-open .select-css option {
	font-weight:normal;
}


/* Hide the browser's default radio button */
.ticket-open .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.ticket-open .checkmark {
  position: absolute;
  top: 12px;
  left: 10px;
  height: 15px;
  width: 15px;
  background-color: rgb(49, 49, 49);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.ticket-open .container:hover {
  background-color: rgba(230, 228, 235, 0.651);
}


/* When the radio button is checked, add a blue background */
.ticket-open .container input:checked ~ .checkmark {
  background-color: #ED830D;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.ticket-open .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.ticket-open .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */


.form-message {
  width:100%;
  padding: 10px;
  width:100%;
  border-radius: 7px;
  margin:20px auto;
  display: none;
}

.form-message p {
  margin-bottom:2px;
}

.form-message.bad {
  display: block;
  background-color: #F8D7DA;
  border: 1px solid #F5C6CB;
}

.form-message.bad p {
  color:#721C24;
}

.form-message.good {
  display: block;
  background-color: #D4EDDA;
  border: 1px solid #C3E6CB;
}

.form-message.good p {
  color:#155724;
}



.domains {
  background-color: white;
  padding:20px;
  box-shadow: 0px 0px 5px rgba(175, 175, 175, 0.521);
  margin:20px 0px;
  overflow: hidden;
}

a.domain-link {
  background-color: #ED830D;
  transition: ease-in-out .2s;
  color:white;
  padding:10px 20px;
  border-radius: 5px;
}

a.domain-link:hover {
  text-decoration: none;
  background-color: #1B1968;
  color:white;
}

.domains .domain-name {
  font-weight:600;
  font-size:30px;
  word-wrap:break-word;
}

.domains .domain-name a {
  color: #1B1565;
}

.domains .type {
  font-weight:400;
  font-size:20px;
  color: #1B1565;
}

.domains .price {
  font-weight:400;
  font-size:18px;
}

.domains .active {
  color:green;
}

.domains .inactive {
  color:red;
}

.wrap {
  width: 480px;
  max-width:100%;
  height: 288px;
  padding: 0;
  overflow: hidden;
}

.frame {
  width: 1920px;
  height: 1179px;
  border: 0;
  -ms-transform: scale(0.25);
  -moz-transform: scale(0.25);
  -o-transform: scale(0.25);
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
  
  -ms-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}





.domain img {
  width:300px;
  max-width: 100%;
}

.domain .type {
  font-weight:500;
  font-size:30px;
  margin:0px;
}

.domain .active,
.domain .inactive {
  font-size:20px
}

.domain .active {
  color:green;
}

.domain .inactive {
  color:red;
}

.domain .action {
  background-color: #ED830D;
  color:white;
  font-size:18px;
  padding:10px 20px;
  border-radius: 5px;
  transition: ease-in-out .2s;
}

.domain .action:hover {
  background-color: #1B1968;
  text-decoration: none;
}

img.pending {
  display: block;
  width:100px;
  border-radius: 5px;;
}

.info-table .table-contents ul li.line-content-hold {
  padding:0px;
}

span.line-content,
span.line-head {
  display: inline-block;
  width:49%;
  padding:10px 20px;
}

span.line-head {
  font-size:18px;
}

span.line-content {
  font-size:16px;
}








.change-info h3 {
  margin-bottom: 20px;
}

.change-info > div > div {
  margin-bottom:30px;;
}

.change-info .message-container {
  margin-top:20px;
}

.change-info .user {
  display: inline-block;
  vertical-align: top;
  margin:20px 0px;
  width:50px;
}

.change-info .user img {
  max-width:100%;
}

.change-info .message {
  display: inline-block;
  background-color: white;
  width: calc(100% - 70px);
  margin:20px 0px 20px 10px;
  box-shadow: 0px 0px 15px #cccccc;
  border-radius:5px;
  padding:10px 15px;
}

.change-info .message h4 {
  font-size:20px;
  margin-bottom:20px;
}

.change-info .message span.msg {
  white-space: pre-wrap;
  font-size:18px;
}

.change-info .message span.time {
  font-size:16px;
  color:rgb(156, 156, 156);
  margin-top:20px;
}









.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 900px;
  min-width:900px;
  max-width:900px;
  position: relative;
  transition: all .5s ease-in-out;
  height: calc(100% - 140px);
}


.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
  display: inline-block;
}


p.btn-print {
  position: absolute;
  top:20px;
  right:100px;
  width:100px;
  text-align: center;
  color:white;
  background-color: #ED830D;
  padding:5px 10px;
  border-radius: 5px;
  transition: ease-in-out .2s;
  cursor: pointer;
}

p.btn-print:hover {
  text-decoration: none;
  background-color: #1B1968;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  height: calc(100% - 50px);
  max-height: 100%;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

.invoice-hold {
  display: block;
  background-color: #5a5a5a;
  border-radius: 3px;
  padding:20px 35px;
  height: 100%;
  overflow: auto;

}

.invoice-paper {
  background-color: #ffffff;
  padding:15px 40px;
  padding-top:140px;
  height:1000px;
  position: relative;
  box-shadow: 0px 0px 15px #414141;
}

.invoice-paper ul {
  padding:0;
  list-style: none;
  margin-left:40px;
  margin-bottom:0;
  font-size:14px;
}

.invoice-paper ul.customer-deets {
  font-weight:700;
}

.invoice-deets {
  text-align:right;
  margin-right:40px;
}

.invoice-deets span {
  font-weight: 700;;
}

p.invoice-word {
  position: absolute;
  font-size:40px;
  font-weight:600;
  top:40px;
  right:75px;
}

img.invoice-img {
  position: absolute;
  width:25%;
  top:40px;
  left:60px;
}

.invoice-content {
  margin:50px 20px;
}

.invoice-content p {
  white-space: pre-wrap;
  font-size:14px;
}

.invoice-content table {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.invoice-content td,
.invoice-content th {
  padding:3px 10px;
  font-size: 14px;;
}

.invoice-content .data-right {
  text-align: right;
}

.invoice-content tr#header {
  background-color: rgb(250, 194, 129);
}

.invoice-content .invoice-final {
  width:300px;
  float:right;
  border-bottom: none;
}

.invoice-content .invoice-final h3 {
  font-size:16px;
  margin-bottom: 0;
}

.invoice-content .invoice-final h4 {
  font-size:14px;
  margin-bottom: 0;
}

.invoice-info {
  position: absolute;
  left:60px;
  bottom: 0;
  width:calc(100% - 120px);
  border-top:1px solid rgb(129, 129, 129);
  padding:10px 0px 40px 0px;
}

.invoice-info ul {
  padding:0;
  list-style: none;
  margin:0;
  font-size:14px;
}

.invoice-info ul .header {
  background-color: transparent;
  font-weight: 600;
  padding:0;
}




.row.info-update {
  width: 900px;
  max-width:100%;
  margin:0px;
}


.ticket-action {
  background-color: #ED830D;
  border-radius:3px;
  color:white;
  font-size:18px;
  padding:5px 10px;
  margin: 10px 0px;
  display: block;
  width: 100%;
  text-align: center;
  transition: ease-in-out .2s;
}

.ticket-action:hover {
  background-color: rgb(209, 125, 29);
  text-decoration: none;
  color:white;
}


