ul#menu-menu-header a {
  color: #05152e;
  transition: color 350ms ease;
}

ul#menu-menu-header a:hover {
  transition: color 350ms ease;
  color: #153cf5;
}

li.current-menu-item > a {
    color: #153cf5 !important;
    font-weight: 500;
}

#menu-menu-header-buttons {
  margin-bottom: 0px;
}

.button-primary.button-header-primary a {
  color: white;
  padding: 15px 0px 15px 0px;
}

.button-secondary a {
    padding: 15px 0px 15px 0px;
}

.button-secondary:hover a {
  color: #fff;
}

li {
    list-style-type: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 10px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.header:before{
    content:" ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2;

}

.header__body{
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

.header__list {
display: flex;
    position: relative;
    z-index: 2;
    margin-bottom: 0px;
}
.header__list li {
    margin: 0px 30px 0 0px;
    /* margin: 0 0 0 45px; */
}

.header__link{
    color: black;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.header__link:hover{
    color: darkblue;
}
.content {
    padding: 100px 0 0 0 ;
}
.content_text{
    font-size: 18px;
    line-height: 25px;
}

.content_text p {
  margin:  0 0 20px 0;
}
.header__burger{
    display: none;
}
@media(max-width: 994px){
    .header__body{
        height: 50px;
    }
    .header__logo {
        flex: 0 0 40px;
    }

    .header__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: aliceblue;
        padding: 70px 10px 20px 10px;
        transition: all 0.3s ease-in-out;
      overflow:auto;

    }
    .header__menu.active {
        top: 60px;
        z-index: 0;
        align-items: normal;
    }
    .header__burger{
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 3;
    }
    .header__burger:before, .header__burger:after{
        content: "";
        background-color: black;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
    }
    .header__burger span {
        position: absolute;
        background-color: black;
        width: 100%;
        height: 2px;
        left: 0;
        top: 9px;
        transition: all 0.3s ease-in-out;
    }
    .header__burger:before{
        top: 0;
        transition: all 0.3s ease-in-out;
    }
    .header__burger:after{
        bottom: 0;
        transition: all 0.3s ease-in-out;
    }
    .header__burger.active:before {
      transform: rotate(45deg);
        top: 9px;
    }
    .header__burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header__burger.active span {
        display: none;
    }

    .header__list{
        display: block;
    }
    .header__list li{
        margin: 0 0 20px 0 ;
    }
    /* .content{
        padding: 70px 0 0 0  ;
    } */

}

#menu-menu-header {
  display: flex;
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
}

@media(max-width: 994px){
    #menu-menu-header {
        height: 50px;
        display: block;
  }
}

.pms-form input[type=text] {
    min-height: 64px;
    margin-bottom: 0px;
    padding-right: 22px;
    padding-left: 22px;
    border-style: solid;
    border-width: 1px;
    border-color: #e5e5ef;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(21, 60, 245, 0.04), 0 2px 6px 0 rgba(5, 21, 46, 0.05);
    -webkit-transition: border-color 400ms ease, box-shadow 400ms ease;
    transition: border-color 400ms ease, box-shadow 400ms ease;
    font-size: 18px;
    line-height: 38px;
    outline: #153cf5;
}

.pms-form input[type=text]:hover {
    border-color: #153cf5;
    box-shadow: 0 4px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 8px 0 rgba(5, 21, 46, 0.06);
}

.pms-form input[type=password] {
    min-height: 64px;
    margin-bottom: 0px;
    padding-right: 22px;
    padding-left: 22px;
    border-style: solid;
    border-width: 1px;
    border-color: #e5e5ef;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(21, 60, 245, 0.04), 0 2px 6px 0 rgba(5, 21, 46, 0.05);
    -webkit-transition: border-color 400ms ease, box-shadow 400ms ease;
    transition: border-color 400ms ease, box-shadow 400ms ease;
    font-size: 18px;
    line-height: 38px;
    /* outline: #153cf5; */
}

.pms-form input[type=password]:hover {
    border-color: #153cf5;
    box-shadow: 0 4px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 8px 0 rgba(5, 21, 46, 0.06);
}

.pms-subscription-plan-description {
    text-align: left;
    margin-bottom: 10px;
}

.pms-subscription-plan.pms-hidden .pms-subscription-plan-description {
  margin-left: 0;
  padding-bottom: 10px;
}

.pms-form input[type=text]:focus-visible {
    border-color: #153cf5;
    box-shadow: 0 4px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 8px 0 rgba(5, 21, 46, 0.06);
}

#pms_login input[type=text] {
    outline: #153cf5;
}

#pms_login input[type=text]:focus-visible {
    border-color: #153cf5;
    box-shadow: 0 4px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 8px 0 rgba(5, 21, 46, 0.06);
}

#pms_login input[type=password] {
    outline: #153cf5;
}


.pms-form input[type=password] {
    outline: #153cf5;
}

.pms-form input[type=password]:focus-visible {
    border-color: #153cf5;
    box-shadow: 0 4px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 8px 0 rgba(5, 21, 46, 0.06);
}


.pms-field {
    text-align: left;
}

#pms-stripe-payment-elements {
    text-align: left;
}

input.pms-form-submit {
    padding: 18px 24px;
    border-radius: 4px;
    background-color: #153cf5;
    box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
    -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
    width: 100%;
    border-width: inherit;
}

input.pms-form-submit:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}

.pms-subscription-plan {
    padding: 10px 0px 0px 20px;
    box-shadow: 0 4px 10px 0 rgba(21, 60, 245, 0.04), 0 2px 6px 0 rgba(5, 21, 46, 0.05);
    border: solid 1px #d7d8d8;
    border-radius: 5px;
}

li.pms-field.pms-first-name-field {
    display: none;
}

li.pms-field.pms-last-name-field {
    display: none;
}

.pms-form > input[type=submit] {
    padding: 18px 24px;
    border-radius: 4px;
    background-color: #153cf5;
    box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
    -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
    width: 100%;
    border-width: 0px;
    margin-bottom: 10px;
    -webkit-appearance: none;
    border-radius: 0;
}

form.pms-form ul.pms-form-fields-wrapper li > input[type=submit] {
    padding: 18px 24px;
    border-radius: 4px;
    background-color: #153cf5;
    box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
    -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: 100%;
    border-width: inherit;
}

#pms_subscription_plans_discount_code {
    width: 100% !important;
    min-height: 92px;
    box-shadow: 0 9px 24px 0 rgba(21, 60, 245, 0.05), 0 8px 17px 0 rgba(5, 21, 46, 0.07);
    border: none;
}

input#pms-apply-discount {
    padding: 18px 24px;
    border-radius: 4px;
    background-color: #153cf5;
    box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
    -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
    border-width: 0px !important;
    margin-bottom: 10px;
    position: relative;
    float: right;
    top: -70px;
    right: 10px;
    -webkit-appearance: none;
}

input#pms-apply-discount:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}

form.pms-form ul.pms-form-fields-wrapper li > input[type=submit]:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}

.pms-form > input[type=submit]:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}

.pms-subscription-plan label {
  margin-bottom: 0px;
}

li.pms-account-navigation-link.pms-account-navigation-link--logout {
    display: none;
}

/* .pms-account-subscription-action-link__cancel {
    display: none;
} */

/* .pms-account-subscription-action-link__abandon {
    display: none;
} */

table.pms-account-subscription-details-table {
     text-align: left;
}

.pms-subscription-plan-description:before {
    content: "Limit pobierania ";
}

nav.header__menu {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0px;
    padding-left: 0px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    list-style-type: none;
}

ul#menu-menu-header {
    padding-left: 0px;
}

@media(max-width: 994px){
    table.pms-account-subscription-details-table {
        font-size: small;

  }
}

@media(max-width: 994px){
    .pms-account-navigation li.pms-account-navigation-link {
        font-size: small;

  }
}

@media(max-width: 994px){
    label {
        font-size: smaller;

  }
}

@media(max-width: 994px){
  .pms-form input[type=text], .pms-form input[type=password], .pms-form input[type=email], .pms-form input[type=textarea], #pms_login input[type=text], #pms_login input[type=password], #pms_login input[type=email] {
    min-height: 50px;
    padding-left: 5px;
  }
}

@media(max-width: 994px){
  .pms-table, .pms-table th, .pms-table td {
    font-size: smaller;

  }
}

a.button-primary.job-post.w-button {
    float: right;
}


/* Download form */

ul.error_messages
  { margin: 0 0 0 15px;
  padding: 0;
}

ul.error_messages li {
  /* height: 22px; */
  line-height: 22px;
  color:#333;
  list-style-type: disc;
}

.error_message {
  display: block;
  line-height: 22px;
  background: #f8d7da url('/wp-content/themes/filego/img/error.gif') no-repeat 10px 6px;
  padding: 0.4rem 2.25rem;
  color: #721c24;
  border: 1px solid #f5c6cb;
  -webkit-border-radius: 0.25rem;
  margin-bottom: 35px;
}

#linkform #success_page p {
  background: url('/wp-content/themes/filego/img/success.gif') left no-repeat;
  background-position-x: 10px;
  border: solid 1px #c3e6cb;
  padding: 5px 5px 5px 37px;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  border-radius: 0.25rem;
}
.loader {
  padding: 0 10px;
}

#addlinks:hover {
    border-color: #153cf5;
    box-shadow: 0 4px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 8px 0 rgba(5, 21, 46, 0.07);
}

/* Download module */

.file-manager {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  border-radius: 6px;
}

.file-manager form {
  display: flex;
  flex-flow: column;
  padding: 0 15px;
}

.file-manager form label {
  padding: 10px 0;
}

.file-manager form input,
.file-manager form select {
  border: 1px solid #c4c7cf;
  padding: 10px;
  border-radius: 4px;
}

.file-manager form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  appearance: none;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  margin: 0px 0px 22px 0px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  background-color: #153cf5;
  box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
}

.file-manager form button:hover {
  background-color: #0423b2;;
}

.file-manager-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  display: none;
}

.file-manager-header h1 {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #7f828a;
  flex: 1;
}

.file-manager-header a {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  background-color: #397ed3;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  margin-right: 15px;
}

.file-manager-header a:hover {
  background-color: #2e76cf;
}

.file-manager-table {
  border-collapse: collapse;
  width: 100%;
  border-style: solid;
  border-width: 1px thin;
  border-color: #153cf540;
  border-radius: 6px;
  border-spacing: 1px;
  box-shadow: 0 -2px 6px 0 rgba(5, 21, 46, 0.02), 0 6px 12px 0 rgba(21, 60, 245, 0.05), 0 2px 6px 0 rgba(5, 21, 46, 0.02);
}

table {
  border-collapse: inherit !important;
}

.file-manager-table thead tr td {
  position: relative;
  /* border-top: 1px solid #e5e5ef; */
  border-bottom: 1px solid #e5e5ef;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  border: solid 1px e5e5ef;
}

.file-manager-table thead tr td.selected-column {
  color: #000000;
}

.file-manager-table thead tr td.selected-column i {
  display: inline-block;
}

.file-manager-table thead tr td i {
  display: none;
  position: absolute;
  right: 10px;
  top: 21px;
}

.file-manager-table tbody tr {
  background-color: #f7f7fb;
}

.file-manager-table tbody tr:nth-child(even) {
  background-color: #fff;
}

.file-manager-table tbody tr.selected {
  background-color: #dceeff;
  border-bottom: 1px solid #b0cae2;
}

.file-manager-table tbody tr td {padding: 15px 15px 15px;color: #000;}

.file-manager-table tbody tr td.name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.file-manager-table tbody tr td.name i {
  width: 25px;
  min-width: 25px;
}

.file-manager-table tbody tr td.name i.fa-folder {
  color: #fbd200;
}

.file-manager-table tbody tr td.name i.fa-file {
  color: #b9bbbe;
}

.file-manager-table tbody tr td.name a {
  text-decoration: none;
  color: #000;
}

.file-manager-table tbody tr td.name a:hover {
  text-decoration: underline;
}

.file-manager-table tbody tr td.date {
  font-size: 14px;
  color: #53555a;
}

.file-manager-table tbody tr td.actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #4a79b4;
  color: #ffffff;
  padding: 11px 6px;
  border-radius: 4px;
  margin-right: 2px;
}


.file-manager-table tbody tr td.actions .btn.green {
    padding: 10px 10px;
    border-radius: 4px;
    background-color: #153cf5;
    box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
    -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
}
.file-manager-table tbody tr td.actions .btn.green:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}

.file-manager-table tbody tr td.actions .btn.red {
  background: #b44a4a;
}

.file-manager-table tbody tr td.actions .btn.red:hover {
  background: #a94646;
}

.file-manager-table tbody tr td.actions .btn:last-child {
  margin-right: 0;
}

.ready {
  background: transparent url('/wp-content/themes/filego/img/success.gif') no-repeat;
  background-position: left;
  padding-left: 23px;
}

.downloading {
  background: transparent url('/wp-content/themes/filego/img/download-from-cloud.gif') no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 37px;
  margin-right: -37px;
}

p.desc {
  color: #9a9ea7;
  margin-top: 20px;
  font-size: small;
}

.progress-bar.progress-bar-striped.progress-bar-animated {
    font-size: xx-large;
    text-align: left;
    background: aquamarine;
}

.progress {
    background: aliceblue;
    color: white;
}

/* Paid Member Module */
.pms-table, .pms-table th, .pms-table td {
      background: white;
      border-bottom: 1px solid rgb(0 0 0) !important;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
}

.pms-table {
    border-width: 1px 0 0 1px;
    width: 100%;
    height: 90%;
    font-size: initial;
}

.pms_success-messages-wrapper p {
    padding: 5px 10px;
    background: rgba(59,139,8, 0.2);
    border: solid 1px #c3e6cb;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-radius: 0.25rem;
}

li.pms-field.pms-field-subscriptions label {
    margin-bottom: 0px;
}

.pms-form {
    width: 100%;
}


/*FAQ*/

details {
    padding: 32px 48px;
    margin: 0 auto;
    position: relative;
    font-size: 22px;
    border: 1px solid #e5e5ef;
    border-radius: 15px;
    box-sizing: border-box;
}

details + details {
  margin-top: 20px;
}

details[open] {
  min-height: 50px;
  box-shadow: 2px 2px 20px rgba(0,0,0,.2);
}

details p {
  margin-top: 20px;
  text-align: left;
  color: #47505c;
  font-size: 18px;
}

details:hover {
    box-shadow: 0 8px 12px 0 rgba(21, 60, 245, 0.08), 0 1px 6px 0 rgba(5, 21, 46, 0.02);
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    transition: box-shadow 350ms ease, transform 350ms ease, -webkit-transform 350ms ease;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  color: #153cf5;
}

summary:focus {
  outline: none;

}

summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

summary::-webkit-details-marker {
  display: none
}

.control-icon {
  fill: #153cf5;
  transition: .3s ease;
  pointer-events: none;
  float: right;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: .3s ease;
  float: right;
}

details[open] .control-icon-expand {
  display: none;
}

/*WooCommerce*/

.woocommerce .col2-set .col-2 {
    display: none;
}

.woocommerce .col2-set .col-1 {
    width: 100% !important;
}

a.button.wc-forward.wp-element-button {
    display: none;
}

input#billing_first_name ,input#billing_last_name, input#billing_email, input#account_password {
    min-height: 64px;
    margin-bottom: 0px;
    padding-right: 22px;
    padding-left: 22px;
    border-style: solid;
    border-width: 1px;
    border-color: #e5e5ef;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(21, 60, 245, 0.04), 0 2px 6px 0 rgba(5, 21, 46, 0.05);
    -webkit-transition: border-color 400ms ease, box-shadow 400ms ease;
    transition: border-color 400ms ease, box-shadow 400ms ease;
    font-size: 18px;
    line-height: 38px;
}

.woocommerce form .form-row input.input-text {
    min-height: 64px;
    margin-bottom: 0px;
    padding-right: 22px;
    padding-left: 22px;
    border-style: solid;
    border-width: 1px;
    border-color: #e5e5ef;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(21, 60, 245, 0.04), 0 2px 6px 0 rgba(5, 21, 46, 0.05);
    -webkit-transition: border-color 400ms ease, box-shadow 400ms ease;
    transition: border-color 400ms ease, box-shadow 400ms ease;
    font-size: 18px;
    line-height: 38px;
}


.woocommerce-message {
    border: solid 1px #27ef12;
    background: #f4fff0;
    border-radius: 6px;
    color: #5d8e40;
}

.woocommerce-info {
    border: solid 1px #c7c7c7 !important;
}

.woocommerce-info::before {
    color: #153cf5 !important;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last {
    width: 100% !important;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 1px solid #e5e5ef !important;

}

.woocommerce-billing-fields {
    text-align: left;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    padding: 18px 24px;
    border-radius: 4px;
    background-color: #153cf5;
    box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
    -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}


.woocommerce button.button.alt {
  padding: 18px 24px;
  border-radius: 4px;
  background-color: #153cf5 !important;
  box-shadow: 0 2px 6px 0 rgba(5, 21, 46, 0.12), 0 14px 14px 0 rgba(21, 60, 245, 0.2);
  -webkit-transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
  transition: box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce button.button.alt:hover {
    background-color: #0423b2;
    box-shadow: 0 3px 9px 0 rgba(5, 21, 46, 0.16), 0 14px 19px 0 rgba(21, 60, 245, 0.23);
    -webkit-transform: translate(0px, -2px);
    -ms-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
    color: #fff;
}

.woocommerce p.lost_password {
    display: none;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    padding-top: 7px;
}

.woocommerce-checkout #payment {
    background-color: #f7f7fb !important;
}

.woocommerce-checkout #payment div.payment_box {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    margin: 1em 0;
    font-size: .92em;
    border-radius: 2px;
    line-height: 1.5;
    background-color: #000000 !important;
    color: #ffffff !important;
}


.compnay-industry-price {
    color: #153cf5;
    font-size: 16px;
    line-height: 18px;
}



/* PMS Status */
#active {
    background: #00d084;
}

#active::after {
  content: "dostepny";
}

#inactive::after {
  content: "niedostepny";
}

a.job-card-date.inactive {
    pointer-events: none;
    opacity: .4;
}

.w-dyn-item.inactive {
    pointer-events: none;
    opacity: .4;
}

/* WooCommerce Status */

#instock {
    background: #00d084;
}

#instock::after {
  content: "dostepny";
}

#outofstock::after {
  content: "niedostepny";
}

a.job-card-date.outofstock {
    pointer-events: none;
    opacity: .4;
}

.w-dyn-item.outofstock {
    pointer-events: none;
    opacity: .4;
}

.job-post-info-text.length:after {
    content: "doba(y)";
    background: white;
    margin-left: -43px;
    position: inherit;
}

/* Contact Form */
#success_page h1 {
    color: #00d084;
}

/* Stripe transfer form fix */
#pms-paygates-inner input + span {
    line-height: 18px !important;
    padding-top: 10px;
}

.pms-discount-success {
    color: green;
    text-align: left;
}

.pms_success-messages-wrapper p {
    background: #dff7e9 !important;
    border: none !important;
    color: #28c76f !important;
}

#pms_login .login-remember {
    margin-bottom: -16px;
    visibility: hidden !important;
}

#pms-subscription-plans-discount-messages-wrapper {
    padding: 0em !important;
    border: none !important;
}

.pms-discount-success {
    background: #dff7e9;
    padding: 20px;
    border-radius: 9px;
    color: #28c76f !important;
}

.pms-discount-error {
    color: #ea5455 !important;
    background: #fce5e6;
    border-radius: 9px;
    padding: 20px;
}

.pms-login-error {
  padding: 5px 10px;
  border: none !important;
  background: #fce5e6 !important;
  color: #ea5455 !important;
  border-radius: 5px;
  font-size: 100% !important;
}

.pms-login-error strong {
  color: #ea5455 !important;
}

.links-container {
  padding: 15px 15px 15px 15px;
  background: aliceblue;
  border-radius: 5px;
  margin-left: 15px;
  margin-right: 15px;
  border: solid 1px;
  border-color: #153cf540;
}

/* Hide subscription*/

.pms-upgrade__group--change .pms-subscription-plan.pms-subscription-plan-43 {
    display: none;
}

#keep2share-tile-2 {
    text-align: right;
}

#filejoker-tile-1 {
    text-align: right;
}
