﻿/* AxWare system style sheet */

:root {
    --aw--color_azure: #00adee;
    --aw--color_blue: #014668;
    --aw--color_grey: #b3b3b3;
}

.aw-ease {
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}
.aw-ease-fast {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.aw-txt-azure {
    color: var(--aw--color_azure);
}
.aw-txt-blue {
    color: var(--aw--color_blue);
}
.aw-txt-grey {
    color: var(--aw--color_grey);
}

.aw-bg-azure {
    background-color: var(--aw--color_azure);
}
.aw-bg-blue {
    background-color: var(--aw--color_blue);
}
.aw-bg-grey {
    background-color: var(--aw--color_grey);
}

.btn-aw {
    color: #fff;
    background-color: var(--aw--color_azure);
    border-color: var(--aw--color_azure);
}
.btn-aw:hover, 
.btn-aw:focus, 
.btn-aw.focus {
    color: #fff !important;
    background-color: var(--aw--color_blue);
    border-color: var(--aw--color_blue);
}

/* wpatt defaults */
.wpatts {
    vertical-align: baseline;
    line-height: 1;
}
.wpatts .wpatt {
    display:inline-block;
}
.wpatts .wpatt a {
    display: inline-block;
    position: relative;
    line-height: 1;
    color: #000;
    text-decoration: none;
}
.wpatts .wpatts-list-title {
    display:block;
    width:auto;
    margin-bottom: 8px;
}

.wpatts-inline {
    display: inline-block;
    padding-left: 4px;
}
.wpatts-inline .wpatt .wpatt-form {
    vertical-align: middle;
}
.wpatts-inline .wpatt .wpatt-form .wpatt-form-alert {
    height: 100%;
    top: 20px;
    left: 0px;
}
.wpatts-inline .wpatt:hover .wpatt-form .wpatt-form-alert {
    opacity: 1;
    top: 0px;
}

.wpatts-list {
    display: block;
    width:fit-content;
    margin-top: 8px;
}
.wpatts-list .wpatt {
    display: block;
    width:auto;
    margin-bottom: 8px;
}
.wpatts-list .wpatt .wpatt-form .wpatt-form-alert {
    height: 110%;
    top: -1px;
    left: -110%;
}
.wpatts-list .wpatt:hover .wpatt-form .wpatt-form-alert {
    opacity: 1;
    left: 0;
}

.wpatts .wpatt .link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: -3px;
    left: 0;
    border-bottom: 1px solid #999;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transform: scaleX(0.3);
    -ms-transform: scaleX(0.3);
    transform: scaleX(0.3);
}
.wpatts .wpatt:hover .link:after {
    bottom: -4px;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.wpatts .wpatt .btn-wpatt {
    color: #fff;
    background-color: var(--aw--color_azure);
    border-color: var(--aw--color_azure);
}
.wpatts .wpatt .btn-wpatt:hover,
.wpatts .wpatt .btn-wpatt:focus,
.wpatts .wpatt .btn-wpatt.focus {
    color: #fff !important;
    background-color: var(--aw--color_blue);
    border-color: var(--aw--color_blue);
}

.wpatts .wpatt .wpatt-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 4px;
    line-height: 1;
    overflow: hidden;
}
.wpatts .wpatt .wpatt-icon .wpatt-icon-icons {
    display: inline-block;
    width: 16px;
}
.wpatts .wpatt .wpatt-icon .wpatt-icon-icons i {
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
}
.wpatts .wpatt .wpatt-icon .wpatt-icon-icons i.hover {
    top: 30px;
}
.wpatts .wpatt:hover .wpatt-icon .wpatt-icon-icons i.hover {
    top: 0;
}
.wpatts .wpatt:hover .wpatt-icon .wpatt-icon-icons i.default {
    top: 30px;
}
.wpatts .wpatt .wpatt-form .wpatt-icon {
   top:2px;
}

.wpatts .wpatt .wpatt-form {
    position: relative;
    display: inline-block;
    height: 100%;
    overflow: hidden;
    padding-bottom:4px;
}
.wpatts .wpatt .wpatt-form .wpatt-form-alert {
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    cursor: pointer;
    font-size:14px;
}
.wpatts .wpatt .wpatt-form .wpatt-form-alert i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wpatts .wpatt .wpatt-form.unlocked .wpatt-form-alert {
    opacity: 0;
}
