﻿/*unit placement*/

.homepage {
    position: absolute;
    top: 120px;
    left: 40%;
    z-index: 100;
}

.phoneUnit {
    position: absolute;
    top: 200px;
    left: 30%;
    z-index: 101;
    transform: scale(0.7);
}

.splash__Heading {
    color: rgba(255,255,255,.8);
    font-size: 52px;
    font-weight: 700;
    padding-top: 30px;
    padding-bottom: 20px;
}

.splash__Text {
    color: rgba(255,255,255,.5);
    font-size: 28px;
    width: 45%;
    padding-bottom: 20px;
}

.splash__CTA {
    clear: both;
    color: rgba(255,255,255,.8);
}

@media (max-width: 650px) {
    .splash__Heading {
        font-size: 36px;
        padding-top: 15px;
    }

    .splash__Text {
        font-size: 20px;
    }

    .splash__CTA .btn {
        min-width: 135px;
        padding: 5px 10px;
    }

    .splash__exploreText {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .phoneUnit {
        left: 30%;
        top: 145px;
        transform: scale(0.61);
    }

    .homepage {
        transform: scale(0.9);
    }
}

@media (max-width: 1000px) {
    .homepage {
        left: 50%;
    }
}

.gradientContainer {
}

    /*background gradient*/

    .gradientContainer .container {
        position: relative;
    }


.gradient--blueGray {
    position: relative;
    background: linear-gradient(351deg,#a2a2a2, #34495e, #34495e);
    background-size: 300% 300%;
    -webkit-animation: gradient2 23s ease infinite;
    -moz-animation: gradient2 23s ease infinite;
    animation: gradient2 23s ease infinite;
    height: 690px;
    overflow: hidden;
}

.gradient--green {
    position: relative;
    background: linear-gradient(-45deg, #068481, #174038, #2A8E82, #174038);
    background-size: 400% 400%;
    animation: gradient 35s linear infinite;
    height: 650px;
    overflow: hidden;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes gradient2 {
    0% {
        background-position: 9% 0%
    }

    50% {
        background-position: 92% 100%
    }

    100% {
        background-position: 9% 0%
    }
}

@-moz-keyframes gradient2 {
    0% {
        background-position: 9% 0%
    }

    50% {
        background-position: 92% 100%
    }

    100% {
        background-position: 9% 0%
    }
}

@keyframes gradient2 {
    0% {
        background-position: 9% 0%
    }

    50% {
        background-position: 92% 100%
    }

    100% {
        background-position: 9% 0%
    }
}
/*AWE homepage*/

.homepage {
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.1;
}

    .homepage .screenUnit {
        --screenWidth: 600px;
        --screenHeight: 490px;
        font-family: inherit;
        width: var(--screenWidth);
        height: var(--screenHeight);
        padding: 8px;
        border-radius: 4px;
        background-color: #f6f9fc;
        background: rgba(246, 249, 252, 0.8);
        box-shadow: 0 5px 5px -20px rgba(50, 50, 93, 0.3), 0 10px 22px -5px rgba(0, 0, 0, 0.3), inset 0 -2px 6px 0 rgba(0, 0, 0, 0.2);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        z-index: 100;
        position: absolute;
    }

        .homepage .screenUnit .screenUnit-screen {
            position: relative;
            height: 100%;
            border-radius: 2px;
            background-color: #fff;
            -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
        }

        .homepage .screenUnit .screenUnit--AWE--container {
            height: 100%;
            padding: 8px;
            background: #fff;
            font-size: 10px;
            letter-spacing: 0.2px;
        }

        .homepage .screenUnit .header {
            background-color: #034db1;
            height: 40px;
            margin: -8px -8px 8px -8px;
            border-top-right-radius: 2px;
            border-top-left-radius: 2px;
        }

        .homepage .screenUnit .img-responsive {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .homepage .screenUnit .logo {
            letter-spacing: -1px;
            font-family: Verdana;
            float: left;
            padding: 6px 8px 4px 20px;
        }

            .homepage .screenUnit .logo .auctionText {
                font-size: 16px;
                text-transform: uppercase;
                color: #fff;
                font-weight: 700;
                float: left;
            }

            .homepage .screenUnit .logo .worxText {
                font-size: 16px;
                text-transform: uppercase;
                color: #F87531;
                font-weight: 700;
                float: left;
            }

            .homepage .screenUnit .logo .editionText {
                clear: both;
                color: #fff;
                font-size: 10px;
                letter-spacing: normal;
                float: right;
                margin-top: -2px;
            }

        .homepage .screenUnit .links {
            float: left;
            font-size: 10px;
            display: flex;
            -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
            padding: 14px 0 0 13px;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

            .homepage .screenUnit .links .link {
                color: #fff;
                padding-right: 12px;
                position: relative;
                height: 20px;
            }

        .homepage .screenUnit .links--right {
            float: right;
            padding-right: 20px;
        }

            .homepage .screenUnit .links--right .link {
                float: right;
            }

        .homepage .screenUnit .arrow-down {
            width: 0;
            height: 0;
            border-left: 3px solid transparent;
            border-right: 3px solid transparent;
            border-top: 3px solid #fff;
            position: absolute;
            top: 5px;
            right: 10px;
        }

        .homepage .screenUnit .searchImg {
            max-height: 9px;
            margin-bottom: -1px;
        }

        .homepage .screenUnit .pageBody {
            clear: both;
            position: relative;
            height: 270px;
        }

        .homepage .screenUnit .leftCategories {
            float: left;
            width: 130px;
        }

        .homepage .screenUnit .categoryHeading {
            padding: 5px;
            margin-bottom: 5px;
            color: #000;
            font-size: 12px;
            border-bottom: 1px solid #ddd;
        }

        .homepage .screenUnit .category {
            font-size: 10px;
            padding: 5px;
            color: #034db1;
        }

        .homepage .screenUnit .count {
            float: right;
            vertical-align: middle;
            background-color: #777;
            border-radius: 10px;
            color: #fff;
            font-size: 6px;
            padding: 1px 3px;
        }

        .homepage .screenUnit .galleryContainer {
            position: absolute;
            top: 0;
            right: 0;
            left: 140px;
            bottom: 0;
        }

            .homepage .screenUnit .galleryContainer .itemContainer {
                border-radius: 2px;
                background-color: #fff;
                /*padding: 10px;*/
                margin-bottom: 10px;
                -webkit-box-shadow: 0 0 2px rgba(51, 51, 51, 0.1), 0 0 2px rgba(51, 51, 51, 0.1), 0 2px 2px rgba(51, 51, 51, 0.1);
                -moz-box-shadow: 0 0 2px rgba(51, 51, 51, 0.1), 0 0 2px rgba(51, 51, 51, 0.1), 0 2px 2px rgba(51, 51, 51, 0.1);
                box-shadow: 0 0 2px rgba(51, 51, 51, 0.1), 0 0 2px rgba(51, 51, 51, 0.1), 0 2px 2px rgba(51, 51, 51, 0.1);
                /*
  webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  box-shadow: 0 1px 1px rgba(0,0,0,.05);*/
                color: #555;
                border: 0;
                height: 160px;
            }

        .homepage .screenUnit .clearfix:before, .homepage .screenUnit .clearfix:after {
            clear: both;
        }

        .homepage .screenUnit .contentRow {
            display: flex;
            justify-content: space-between;
        }

            .homepage .screenUnit .contentRow .itemContainer {
                width: 32%;
                box-sizing: border-box;
                overflow: hidden;
            }

        .homepage .screenUnit .imgContainer {
            aspect-ratio: 4/3;
            margin-bottom: 3px;
            height: 103px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
        }

        .homepage .screenUnit .bidNum {
            font-size: 7px;
            padding-left: 3px;
        }

        .homepage .screenUnit .title {
            color: #034db1;
            margin-left: 3px;
            margin-right: 3px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 3px;
            margin-bottom: 5px;
            margin-top: 1px;
        }

        .homepage .screenUnit .dataLabels {
            font-size: 7px;
            text-transform: uppercase;
            margin: 0 3px;
            height: 11px;
        }

            .homepage .screenUnit .dataLabels .currentBid {
                float: left;
            }

            .homepage .screenUnit .dataLabels .timeRemaining {
                float: right;
            }

        .homepage .screenUnit .data {
            margin: 0 3px;
            clear: both;
        }

            .homepage .screenUnit .data .price {
                font-weight: bold;
                color: #009933;
                float: left;
            }

            .homepage .screenUnit .data .time {
                font-weight: bold;
                float: right;
            }

.galleryImage__1 {
    background-image: var(--galleryImage__1);
}

.galleryImage__2 {
    background-image: var(--galleryImage__2);
}

.galleryImage__3 {
    background-image: var(--galleryImage__3);
}

.galleryImage__4 {
    background-image: var(--galleryImage__4);
}

.galleryImage__5 {
    background-image: var(--galleryImage__5);
}

.galleryImage__6 {
    background-image: var(--galleryImage__6);
}

.galleryImage__7 {
    background-image: var(--galleryImage__7);
}

.galleryImage__8 {
    background-image: var(--galleryImage__8);
}

.galleryImage__9 {
    background-image: var(--galleryImage__9);
}

.title__1:before {
    content: var(--title__1);
}

.title__2:before {
    content: var(--title__2);
}

.title__3:before {
    content: var(--title__3);
}

.title__4:before {
    content: var(--title__4);
}

.title__5:before {
    content: var(--title__5);
}

.title__6:before {
    content: var(--title__6);
}

.price__1:before {
    content: var(--price__1);
}

.price__2:before {
    content: var(--price__2);
}

.price__3:before {
    content: var(--price__3);
}

.price__4:before {
    content: var(--price__4);
}

.price__5:before {
    content: var(--price__5);
}

.price__6:before {
    content: var(--price__6);
}

.bidCount__1:before {
    content: var(--bidCount__1);
}

.bidCount__2:before {
    content: var(--bidCount__2);
}

.bidCount__3:before {
    content: var(--bidCount__3);
}

.bidCount__4:before {
    content: var(--bidCount__4);
}

.bidCount__5:before {
    content: var(--bidCount__5);
}

.bidCount__6:before {
    content: var(--bidCount__6);
}

.countdown__1:before {
    content: var(--countdown__1);
}

.countdown__2:before {
    content: var(--countdown__2);
}

.countdown__3:before {
    content: var(--countdown__3);
}

.countdown__4:before {
    content: var(--countdown__4);
}

.countdown__5:before {
    content: var(--countdown__5);
}

.countdown__6:before {
    content: var(--countdown__6);
}
/*AWE lot page - phone*/

.phoneUnit {
    --phoneBorderRadius: 20px;
    --phoneScreenBorderRadius: 14px;
    --phoneWidth: 280px;
    --phoneHeight: 560px;
    font-family: inherit;
    width: var(--phoneWidth);
    height: var(--phoneHeight);
    padding: 8px;
    border-radius: var(--phoneBorderRadius);
    background-color: #f6f9fc;
    background: rgba(246, 249, 252, 0.85);
    box-shadow: 0 5px 5px -20px rgba(50, 50, 93, 0.3), 0 10px 22px -5px rgba(0, 0, 0, 0.3), inset 0 -2px 6px 0 rgba(0, 0, 0, 0.2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    z-index: 100;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #000;
}
    /*
.phoneUnit.phoneUnit__one {
  top: 50px;
  left: 50px;
}*/
    .phoneUnit .phoneUnit-screen {
        position: relative;
        height: 100%;
        border-radius: var(--phoneScreenBorderRadius);
        background-color: #fff;
        -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
    }

    .phoneUnit .phoneUnit--AWE--container {
        height: 100%;
        padding: 0 8px 16px 8px;
        border-radius: 22px;
        background: #fff;
        font-size: var(--checkoutPhoneFontSize);
        font-weight: var(--fontWeightNormal);
        letter-spacing: 0.2px;
    }

    .phoneUnit .phoneUnit--AWE__lotPage {
        --lotTitleFontSize: 14px;
        --lotNavButtonFontSize: 10px;
        --lotNumberFontSize: 10px;
        --buttonRadius: 8px;
    }

        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__title:before {
            content: var(--lotTitle);
        }

        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__title {
            font-size: 14px;
            white-space: nowrap;
        }

        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__header {
            position: relative;
            background-color: #034db1;
            padding: 3px;
            margin-bottom: 0.5em;
            border-bottom: 1px solid #ebebeb;
            background-color: #034db1;
            height: 45px;
            margin: 0px -8px 8px -8px;
            border-top-right-radius: 2px;
            border-top-left-radius: 2px;
        }

        /*
        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__logo {
            background-image: var(--logo);
            background-repeat: no-repeat;
            background-position: center;
            height: 40px;
        }

            .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__logo img {
                margin: 0 auto;
                display: block;
            }*/

        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__logo {
            letter-spacing: -1px;
            font-family: Verdana;
            float: left;
            padding: 6px 8px 4px 55px;
        }

            .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__logo .auctionText {
                font-size: 16px;
                text-transform: uppercase;
                color: #fff;
                font-weight: 700;
                float: left;
            }

            .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__logo .worxText {
                font-size: 16px;
                text-transform: uppercase;
                color: #F87531;
                font-weight: 700;
                float: left;
            }

            .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__logo .editionText {
                clear: both;
                color: #fff;
                font-size: 10px;
                letter-spacing: normal;
                float: right;
                margin-top: -2px;
            }


        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__hamburger {
            position: absolute;
            bottom: 12px;
            right: 15px;
        }

            .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__hamburger .hamburger--line {
                height: 2px;
                width: 20px;
                background-color: rgba(255, 255, 255, 0.23);
                margin-bottom: 3px;
            }

        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__sub-title {
            font-size: 11px;
            margin-top: 8px;
        }

        .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__imgContainer {
            border: 1px solid #ddd;
            margin-top: 0.5em;
            padding: 0.25em 0.25em 2px;
            border-radius: 3px;
        }

            .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__imgContainer .phoneUnit__imgContainer--top {
                display: flex;
                text-align: center;
                align-items: center;
                justify-content: center;
            }

                .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__imgContainer .phoneUnit__imgContainer--top .phoneUnit__lotNumber {
                    flex: 2;
                    font-size: var(--lotNumberFontSize);
                    text-align: center;
                    font-weight: bold;
                }

                .phoneUnit .phoneUnit--AWE__lotPage .phoneUnit--AWE__imgContainer .phoneUnit__imgContainer--top .phoneUnit__lotNavButton {
                    flex: 1;
                    padding: 3px 10px;
                    font-size: 10px;
                    line-height: 1.5;
                    border-radius: 3px;
                    color: #333;
                    background-color: #fff;
                    border: 1px solid #ccc;
                }

    .phoneUnit .phoneUnit__galleryImage {
        margin-top: 3px;
        height: 150px;
        display: block;
        background-image: var(--mainImage);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }


    .phoneUnit .phoneUnit__socialMedia {
        padding: 2px 0 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-left: -0.25em;
        margin-right: -0.25em;
        text-align: center;
    }

    .phoneUnit .phoneUnit__eventContainer {
        -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1), 0 0 6px rgba(51, 51, 51, 0.1), 0 2px 2px rgba(51, 51, 51, 0.1);
        -moz-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1), 0 0 6px rgba(51, 51, 51, 0.1), 0 2px 2px rgba(51, 51, 51, 0.1);
        box-shadow: 0 0 10px rgba(51, 51, 51, 0.1), 0 0 6px rgba(51, 51, 51, 0.1), 0 2px 2px rgba(51, 51, 51, 0.1);
        color: #555;
        border: 0;
        margin-bottom: 1em;
        background-color: #fff;
        border-radius: 4px;
        padding: 0.3em;
    }

    .phoneUnit .phoneUnit__eventTitle:before {
        content: var(--eventName);
    }

    .phoneUnit .phoneUnit__eventTitle {
        color: #034db1;
        font-size: 14px;
        font-weight: bold;
        margin-top: 0;
    }

    .phoneUnit .active-label {
        display: inline-block;
        background-color: green;
        color: #fff;
        border-radius: 4px;
        font-size: 8px;
        padding: 3px 2px 2px 2px;
        font-family: sans-serif;
        letter-spacing: 1px;
    }

    .phoneUnit .eventID {
        color: rgba(0, 0, 0, 0.5);
        font-size: 6px;
        font-weight: normal;
        font-family: Verdana, sans-serif;
    }

    .phoneUnit .phoneUnit__eventBackLink {
        font-size: 10px;
        padding-top: 0.2em;
        color: #034db1;
    }

    .phoneUnit .phoneUnit__eventProxyLabel {
        padding: 5px 10px 3px 10px;
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 4px;
        color: #555;
        text-align: center;
        margin-top: 0.5em;
        font-size: 10px;
    }

    .phoneUnit strong {
        font-weight: bold;
    }

    .phoneUnit .phoneUnit__priceContainer {
        padding: 0.5em 0;
    }

    .phoneUnit .phoneUnit__priceLabel {
        font-weight: bold;
        font-size: 14px;
    }

    .phoneUnit .phoneUnit__priceNum:before {
        content: var(--lotPrice);
    }

    .phoneUnit .phoneUnit__priceNum {
        color: green;
        font-weight: bold;
        font-size: 12px;
    }

    .phoneUnit .phoneUnit__reserve {
        color: #0276FD;
        font-weight: bold;
        font-size: 10px;
    }

    .phoneUnit .phoneUnit__watching {
        position: relative;
        border: 1px solid #ebebeb;
        font-weight: bold;
        display: block;
        padding: 10px;
        background-color: #fff;
    }

        .phoneUnit .phoneUnit__watching .numWatch {
            display: block;
            color: #555;
            font-size: 10px;
            padding-bottom: 10px;
        }

        .phoneUnit .phoneUnit__watching .addWatch {
            font-size: 12px;
            color: #034db1;
        }

    .phoneUnit .phoneUnit__quickBid:before {
        content: var(--quickBid);
    }

    .phoneUnit .phoneUnit__quickBid {
        margin: 0.25em 0;
        height: 32px;
        text-align: center;
        color: #fff;
        background-color: #a31815;
        border-color: #8c1512;
        vertical-align: middle;
        padding: 6px 12px 4px;
        font-size: 16px;
        line-height: 1.42857143;
        border-radius: 4px;
    }


    .phoneUnit .phoneUnit__thumbnails {
        display: flex;
    }

        .phoneUnit .phoneUnit__thumbnails div {
            flex: 1;
            margin: 10px;
            height: 40px;
            background-image: var(--thumbnailImage);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
        }

    .phoneUnit .phoneUnit__hr {
        border-top: 1px solid #ccc;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .phoneUnit .phoneUnit__input {
        border: 1px solid #ccc;
        border-radius: 4px;
        height: 30px;
        position: relative;
    }

    .phoneUnit .phoneUnit__inputIcon {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 30px;
        border-right: 1px solid #ccc;
        background-color: #eee;
        padding-top: 6px;
        text-align: center;
    }

    .phoneUnit .phoneUnit__minBidText:after {
        content: var(--minBidText);
    }

    .phoneUnit .phoneUnit__minBidText {
        font-size: 10px;
        text-align: right;
        color: #555;
        height: 10px;
        padding-top: 2px;
    }

    .phoneUnit .phoneUnit__submitMaxBid {
        margin-top: 6px;
        color: #fff;
        background-color: #218f23;
        border-color: #1c7a1e;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        padding: 6px 12px;
        font-size: 16px;
        line-height: 1.42857143;
        border-radius: 4px;
    }
