/*====================
	Excidium Tech Optimum Stylesheet
	Purpose: Admin Dashboard Styling
	Author: Excidium Tech, LLC
	Author URI: https://excidium.tech
	Version: 0.0.4
	License: GPLv2
	License URI: http://www.gnu.org/licenses/gpl-2.0.txt
====================*/
.excidium-tech-company-logo {
    border-radius: 10px;
    box-shadow:    0 10px 10px -5px #252525, 0 0 5px #252525;
    display:       block;
    border:        5px solid #D1AD54;
    height:        68px;
    width:         270px;
    }

.excidium-tech-support-container {
    background-color: #D4C7A7 !important;
    box-sizing:       border-box;
    max-width:        875px;
    border:           5px solid #B8A26C !important;
    }

.excidium-tech-support-container a,
.excidium-tech-support-container a:visited,
.excidium-tech-support-container a:focus {
    text-decoration: none;
    font-weight:     700;
    color:           #151515;
    }

.excidium-tech-support-container a:hover {
    color: #4F2F4F;
    }

.excidium-tech-support-container .extech-table {
    background-color: transparent !important;
    margin-bottom:    0 !important;
    }

.excidium-tech-support-container .extech-about {
    color: #252525 !important;
    }

.excidium-tech-support-container .extech-image-container {
    vertical-align: middle;
    text-align:     center;
    padding:        20px 10px 20px 10px;
    }

/*==========
Utility Styling
==========*/
.extech-clearfix {
    overflow: auto;
    }

.extech-clearfix::after {
    content: "";
    display: table;
    clear:   both;
    }

/*==========
General Styling
==========*/
.extech-spaced {
    margin-bottom: 20px;
    }

.extech-message {

    }

.dataTable .extech-message {
    margin-top: 20px;
    padding:    15px !important;
    }

/*==========
Modal & Confirm Styling
==========*/
#extech_confirm {
    display: none;
    }

.extech-confirm-overlay {
    background: rgba(0, 0, 0, 0.5);
    position:   fixed;
    height:     100%;
    width:      100%;
    left:       0;
    top:        0;
    }

.extech-confirm-container {
    border-radius: 5px;
    background:    #FFFFFF;
    box-shadow:    0 0 1px #555555;
    transform:     translate(-50%, -50%);
    max-width:     500px;
    position:      absolute;
    height:        auto;
    border:        1px solid #333333;
    width:         auto;
    left:          50%;
    top:           50%;
    }

.extech-confirm-content {
    padding: 0 25px 25px;
    }

.extech-confirm-icon {

    }

.extech-confirm-title {
    background-color: #085951;
    border-bottom:    5px solid #f2d129;
    padding:          25px;
    margin:           0;
    color:            #FFFFFF;
    }

.extech-confirm-message {
    /*
    text-align-last: left;
    word-spacing:    -2px;
    text-justify:    distribute;
    text-align:      justify;
    hyphens:         auto;
    */
    font-size: 15px;
    }

.extech-confirm-actions {
    text-align: right;
    }

.extech-confirm-true {
    margin-right: 25px;
    }

.extech-confirm-false {

    }

/*==========
Spinner Styling
==========*/
#extech_optimum_spinner_wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    position:         fixed;
    z-index:          9999;
    height:           100%;
    width:            100%;
    top:              0;
    left:             0;
    }

#extech_optimum_spinner {
    border-radius:    50%;
    animation:        extech_optimum_spin 2s infinite linear;
    position:         absolute;
    bottom:           0;
    margin:           auto;
    height:           75px;
    border:           5px solid #FFFFFF;
    width:            75px;
    right:            0;
    left:             0;
    top:              0;
    border-top-color: transparent;
    }

@keyframes extech_optimum_spin {
    from {
        transform: rotate(0deg);
        }

    to {
        transform: rotate(360deg);
        }
    }

#extech_optimum_spinner_message {
    line-height: 100vh;
    position:    relative;
    height:      100vh;
    width:       100vw;
    }

#extech_optimum_spinner_message > p {
    background-color: rgba(0, 0, 0, .45);
    line-height:      2rem;
    text-align:       center;
    margin-top:       50px;
    position:         absolute;
    padding:          10px 0;
    z-index:          9999;
    width:            100%;
    color:            #FFFFFF;
    top:              50%;
    }

/*==========
Icon Styling
==========*/


/*==========
Settings Page Styling
==========*/
.extech-notice {
    margin-left: 0 !important;
    }

.extech-short {
    max-width: 990px;
    }

.extech-extended {
    max-width: 1200px;
    }

.extech-super {
    max-width: 1500px;
    }

.extech-pane {
    background-color: #FFFFFF;
    margin-bottom:    30px;
    margin-top:       15px;
    box-shadow:       0 0 1px #555555;
    box-sizing:       border-box;
    width:            95%;
    }

.extech-pane.extech-rounded {
    border-bottom-right-radius: 15px;
    border-top-left-radius:     15px;
    }

.extech-pane-head,
.extech-pane-foot {
    background-color: #085951;
    padding:          20px 10px;
    margin:           0;
    color:            #FFFFFF;
    }

.extech-pane-head {
    border-bottom: 5px solid #f2d129;
    }

.extech-pane-foot {
    border-top: 5px solid #f2d129;
    }

.extech-pane-head a {
    text-decoration: none;
    color:           #ECB717;
    }

.extech-pane-head a:hover {
    color: #ECB717;
    }

.extech-pane.extech-rounded .extech-pane-head {
    border-top-left-radius: 15px;
    }

.extech-pane.extech-rounded .extech-pane-foot {
    border-bottom-right-radius: 15px;
    }

.extech-pane-head h1,
.extech-pane-head h2,
.extech-pane-head h3,
.extech-pane-head h4 {
    color: #FFFFFF;
    }

.extech-pane-body {
    max-width: 990px;
    padding:   15px;
    }

.extech-pane-body.extech-no-pad {
    padding: 0;
    }

.extech-pane.options_group {
    border: 0 !important;
    margin: 0;
    width:  100%;
    }

.extech-meta-variation-wrap .extech-pane.options_group {
    margin-top: 10px;
    }

.extech-pane.options_group .extech-pane-head {
    padding: 10px;
    }

.extech-pane.options_group .extech-pane-head h3 {
    margin-top: 5px;
    }

.extech-pane.options_group .extech-pane-head p {
    font-size: 14px;
    padding:   0 !important;
    margin:    0 !important;
    }

.extech-pane.options_group .extech-pane-body {
    max-width: initial;
    padding:   10px;
    }

.extech-pane.options_group .form-field {
    line-height: 30px;
    margin-top:  20px;
    min-height:  30px;
    padding:     0 !important;
    }

.extech-pane.options_group .form-field:last-child {
    margin-bottom: 20px;
    }

.extech-pane.options_group label {
    vertical-align: middle;
    font-weight:    700;
    min-width:      225px;
    padding:        0;
    display:        inline-block;
    margin:         0;
    width:          auto;
    float:          unset;
    }

.extech-pane.options_group input[type="text"] {
    width: 300px !important;
    float: unset !important;
    }

.extech-pane.options_group input[type="checkbox"] {
    vertical-align: middle;
    float:          unset !important;
    }

.extech-pane.options_group span.description {
    vertical-align: middle;
    }

.extech-meta-variation-wrap .extech-pane.options_group .woocommerce-help-tip {
    float: unset !important;
    }

.extech-pane.options_group .woocommerce-help-tip::after {
    left: -10px !important;
    }

.extech-pane .extech-table {

    }

.extech-pane .extech-table tr {
    margin-right: 20px;
    margin-left:  20px;
    }

.extech-menu-wrap {
    }

.extech-menu {
    background-color: #085951;
    list-style:       none;
    flex-wrap:        wrap;
    display:          inline-flex;
    }

.extech-menu li {
    margin-bottom: 0;
    }

.extech-menu li.extech-menu-active {
    background-color: #f2d129;
    }

.extech-menu li:hover {
    background-color: #62778C;
    }

.extech-menu a {
    text-decoration: none;
    text-align:      center;
    line-height:     50px;
    display:         block;
    padding:         0 20px;
    height:          50px;
    }

.extech-menu a,
.extech-menu a:visited,
.extech-menu a:active {
    color: #FFFFFF;
    }

.extech-menu li.extech-menu-active:not(:hover) a,
.extech-menu li.extech-menu-active:not(:hover) a:visited,
.extech-menu li.extech-menu-active:not(:hover) a:active {
    color: #282828;
    }

.extech-menu i {
    vertical-align: middle;
    margin-right:   5px;
    line-height:    16px;
    }

.extech-menu span {
    vertical-align: middle;
    line-height:    15px;
    display:        inline-block;
    height:         20px;
    }

.extech-menu-active {

    }

.extech-module-thumbnail {
    vertical-align: middle;
    border-radius:  3px;
    height:         90px;
    width:          170px;
    }

.extech-table {
    background-color: #FFFFFF;
    border-collapse:  collapse;
    margin-bottom:    25px;
    width:            100%;
    }

.extech-table.extech-styled {
    }

.extech-pane-body > .extech-table {
    margin-bottom: 0;
    }

.mvx-wrapper .extech-table th {
    background-color: unset;
    }

.extech-table tr {
    border-collapse: collapse;
    }

.extech-table tbody tr {
    border-bottom: 1px solid #DDDDDD;
    }

.extech-table tbody tr:nth-child(even) {
    background-color: #F7F7F7;
    }

.extech-table tbody tr:last-child {
    border-bottom: 0;
    }

.extech-table th {
    vertical-align: top;
    line-height:    1.3;
    font-weight:    600;
    text-align:     left;
    padding:        20px 10px 20px 10px;
    width:          initial;
    }

.extech-table td {
    vertical-align: middle;
    line-height:    1.3;
    padding:        15px 10px;
    }

.extech-table.col-50 th,
.extech-table.col-50 td {
    width: 50%;
    }

.extech-table.col-33 th,
.extech-table.col-33 td {
    width: 33.3333333%;
    }

.extech-table.col-25 th,
.extech-table.col-25 td {
    width: 25%;
    }

.extech-table.col-20 th,
.extech-table.col-20 td {
    width: 20%;
    }

.extech-table th.col-50,
.extech-table td.col-50 {
    width: 50%;
    }

.extech-table th.col-40,
.extech-table td.col-40 {
    width: 40%;
    }

.extech-table th.col-33,
.extech-table td.col-33 {
    width: 33.3333333%;
    }

.extech-table th.col-25,
.extech-table td.col-25 {
    width: 25%;
    }

.extech-table th.col-20,
.extech-table td.col-20 {
    width: 20%;
    }

.extech-table th.col-10,
.extech-table td.col-10 {
    width: 10%;
    }

.extech-center {
    text-align: center !important;
    }

.extech-centered {
    display: block !important;
    margin:  0 auto !important;
    }

.extech-middle-aligned {
    vertical-align: middle !important;
    }

.extech-right {
    text-align: right !important;
    }

.extech-right-aligned {
    display: block !important;
    margin:  0 0 0 auto !important;
    }

.extech-right-aligned {
    display: block !important;
    margin:  0 0 0 auto !important;
    }

.extech-pre {
    white-space: pre-wrap;
    }

.extech-table.extech-top td {
    vertical-align: top;
    }

.extech-table.extech-middle th,
.extech-table.extech-middle td {
    vertical-align: middle;
    }

.extech-link {
    text-decoration: none;
    font-weight:     700;
    font-size:       13px;
    }

.extech-link:hover {
    text-decoration: underline;
    }

.extech-button {
    background-color: #0420bf;
    text-decoration:  none;
    border-radius:    5px;
    line-height:      50px;
    font-weight:      700;
    text-align:       center;
    font-size:        1.25em;
    display:          inline-block;
    height:           50px;
    border:           2px solid #0420bf;
    cursor:           pointer;
    width:            200px;
    color:            #ffffff;
    }

button.extech-button {
    box-sizing: initial;
    }

.extech-button.extech-info {
    background-color: #9EC4D7;
    border-color:     #9EC4D7;
    color:            #282828;
    }

.extech-button.alt {
    background-color: #4C7B4C;
    border-color:     #4C7B4C;
    color:            #FFFFFF;
    }

.extech-button.extech-careful,
.extech-button.careful {
    background-color: #c02b0a;
    border-color:     #c02b0a;
    color:            #FFFFFF;
    }

.extech-button.extech-small {
    border-radius: 0;
    border-color:  #0420bf;
    line-height:   30px;
    font-size:     1.1em;
    height:        30px;
    width:         75px;
    }

.extech-button.extech-small.extech-alt {
    min-width: 75px;
    padding:   0 10px;
    width:     auto;
    }

.extech-button.extech-small.careful,
.extech-button.extech-small.alt {
    border-color: #909090;
    }

.extech-button-secondary {
    vertical-align: top;
    border-radius:  5px;
    font-weight:    700;
    background:     none;
    font-size:      1.25em;
    border:         2px solid #4C7B4C;
    cursor:         pointer;
    height:         50px;
    width:          200px;
    color:          #4C7B4C;
    }

.extech-button-secondary.careful {
    border-color: #8F5E5E;
    color:        #8F5E5E;
    }

.extech-button:hover {
    background-color: #f2d129 !important;
    border-color:     #f2d129 !important;
    color:            #085951 !important;
    }

.extech-label {
    vertical-align: middle;
    font-size:      14px;
    display:        block;
    }

.extech-label span {
    vertical-align: middle;
    display:        inline-block;
    }

.extech-label img,
.extech-label .extech-thumbnail {
    max-width: 150px;
    height:    auto;
    }

.extech-label label img {
    max-width: 110px;
    }

.extech-about,
.extech-desc {
    line-height: 1.5;
    font-style:  italic;
    font-size:   14px;
    color:       #555555;
    }

.extech-about,
.extech-desc {
    margin: 0 0 1em 0;
    }

.extech-about:only-child,
.extech-about:last-child,
.extech-desc:only-child,
.extech-desc:last-child {
    margin-bottom: 0;
    }

.extech-label + .extech-about,
.extech-label + .extech-desc {
    margin-top: 1em;
    }

.extech-button-wrap {
    width: auto;
    }

.extech-input {
    border-color: #999999;
    max-width:    unset !important;
    padding:      0 10px;
    height:       50px;
    width:        100%;
    }

.mvx-wrapper .extech-input th {
    padding: 0 10px !important;
    }

/*==========
Checkbox Toggle Styling
==========*/

.extech-checkbox {
    visibility: hidden;
    max-height: 0;
    min-width:  0 !important;
    content:    '' !important;
    margin:     0 !important;
    height:     0 !important;
    width:      0 !important;
    float:      none;
    }

.extech-checkbox ~ .extech-toggle {
    vertical-align: middle;
    margin-right:   1.5rem;
    position:       relative;
    display:        inline-block;
    cursor:         pointer;
    height:         1rem;
    width:          1.5rem;
    }

.extech-checkbox ~ .extech-toggle::before,
.extech-checkbox ~ .extech-toggle::after {
    position: absolute;
    content:  ' ';
    bottom:   0;
    top:      0;
    }

.extech-checkbox ~ .extech-toggle::before {
    border-radius: 0.5rem;
    background:    #DBDBDB;
    height:        100%;
    width:         100%;
    }

.extech-checkbox ~ .extech-toggle::after {
    border-radius: 50%;
    background:    #FFFFFF;
    margin:        0.125rem;
    height:        0.75rem;
    width:         0.75rem;
    }

.extech-checkbox:hover ~ .extech-toggle::before {
    background: #C4C4C4;
    }

.extech-checkbox:focus ~ .extech-toggle::before {
    box-shadow: 0 0 0 2px rgba(68, 85, 102, 0.5);
    }

.extech-checkbox:focus:checked ~ .extech-toggle::before {
    box-shadow: 0 0 0 2px rgba(97, 191, 158, 0.5);
    }

.extech-checkbox:checked ~ .extech-toggle::before {
    background: #085951;
    }

.extech-checkbox:checked ~ .extech-toggle::after {
    left:  auto;
    right: 0;
    }

/*==========
Settings Status Styling
==========*/
.extech-checkbox ~ .extech-status,
.extech-status-disabled,
.extech-status-enabled {
    margin-left: 10px;
    font-weight: 700;
    }

.extech-checkbox ~ .extech-status::before {
    content: "(Disabled)";
    color:   #8F5E5E;
    }

.extech-checkbox ~ .extech-status.product::before {
    content: "[No Sync]";
    }

.extech-checkbox ~ .extech-status.completed::before {
    content: "[Incomplete]";
    }

.extech-checkbox:checked ~ .extech-status::before {
    content: "(Enabled)";
    color:   #4C7B4C;
    }

.extech-checkbox:checked ~ .extech-status.product::before {
    content: "[Sync]";
    }

.extech-checkbox:checked ~ .extech-status.completed::before {
    content: "[Completed]";
    }

.extech-status-disabled {
    color: #8F5E5E;
    }

.extech-status-disabled-framed {
    background-color: #5D3C3C;
    box-shadow:       0 0 3px #252525;
    padding:          5px;
    border:           1px solid #000000;
    color:            #CDB2B2;
    }

.extech-status-enabled {
    color: #4C7B4C;
    }

.extech-status-enabled-framed {
    background-color: #3A5F3A;
    box-shadow:       0 0 3px #252525;
    padding:          5px;
    border:           1px solid #000000;
    color:            #B0CEB0;
    }

/*==========
Flexbox Styling
==========*/
.extech-flexed {
    flex-wrap: wrap;
    display:   flex;
    }

.extech-flexed > * {
    flex-basis: 50%;
    flex-grow:  1;
    }

@media screen and ( max-width: 980px ) {
    .extech-flexed > * {
        width: 100%;
        }
    }

.extech-shadow {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    }

/*==========
Pagination Styling
==========*/
.extech-pagination {
    line-height: 50px;
    text-align:  right;
    margin:      0;
    }

.extech-pagination .page-numbers {
    background-color: #085951;
    text-decoration:  none;
    margin-right:     5px;
    font-size:        1.4em;
    padding:          5px 15px;
    color:            #FFFFFF;
    }

.extech-pagination .page-numbers:last-child {
    margin-right: 0;
    }

.extech-pagination .page-numbers.current,
.extech-pagination .page-numbers:hover {
    background-color: #f2d129;
    color:            #282828;
    }

.extech-pagination .page-numbers.next {

    }

.extech-pagination .page-numbers.prev {

    }

/*==========
License Status Styling
==========*/
.extech-license {
    font-weight: 700;
    font-size:   1.3em;
    }

.extech-license-status {
    margin-left: 10px;
    }

.extech-license-status-undefined {
    }

.extech-license-status-active {
    color: #4C7B4C;
    }

.extech-license-status-inactive {
    color: #8F5E5E;
    }

/*==========
WooCommerce Product Tabs Styling
==========*/
.extech-wooc-tab-label a:before {
    content: "\f312" !important;
    }

/*==========
MVX Specific Styling
==========*/
.mvx-wrapper .extech-form #api_credentials h4 {
    padding-bottom: 0;
    margin:         15px 0;
    }

/*==========
Sync Status Styling
==========*/
.extech-sync-status {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
    gap: 5px;
    margin-bottom: 10px;
}

.extech-sync-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.extech-sync-item .dashicons-yes-alt {
    color: #46b450;
}

.extech-sync-item .dashicons-no-alt {
    color: #dc3232;
}
