/* ToolBar CSS */
.trx_addons_demo_options_wrapper {
    position: fixed;
    top: 0;
    left: 100%;
    background: #fff;
    height: 100%;
    width: 250px;
    max-width: calc(100% - 45px);
    z-index: 100002;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.trx_addons_demo_options_wrapper.open {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    box-shadow: 0 0 14px -2px rgba(0,0,0,.13);
}


@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

.trx_addons_demo_options_wrapper:before {
    content: "";
    display: block;
    height: 100%;
    width: 0;
    background-color: rgba(0,0,0, 0.4);
    position: absolute;
    right: 250px;
    top: 0;
}
.trx_addons_demo_options_wrapper.open:before {
    width: 100vw;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility:visible;
}
.trx_addons_demo_options_wrapper.close:before {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility:visible;
    width: 100vw;
}

.trx_addons_demo_options_wrapper .trx_addons_demo_panel {
    height: 100%;
    overflow-y: auto;
}
.trx_addons_panel_button {
    font-size: 15px;
    font-weight: 600;
    line-height: 23px;
    padding: 20px 48px;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_panel_header,
.trx_addons_demo_options_wrapper .trx_addons_demo_panel_footer {
    text-align: center;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_panel_header {
    padding: 24px 0 16px;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_panel_footer {
    padding: 10px 30px 70px;
}
.trx_addons_demo_options_wrapper  .trx_addons_demo_panel_header  .trx_addons_demo_option_title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}
.trx_addons_demo_options_wrapper .trx_addons_quick_option_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 8px 20px;
}
.trx_addons_demo_options_wrapper .trx_addons_quick_option_list .trx_addons_demo_list_item {
    /*  1/2  - 2 columns per row 10px - spacing between columns  */
    margin-bottom: 9px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #DCDCDC;
    background-color: #F9F9F9;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    -ms-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.trx_addons_demo_options_wrapper .trx_addons_quick_option_list .trx_addons_demo_list_item:hover {
    border-color: #A7A7A7;
}
.trx_addons_demo_options_wrapper .trx_addons_quick_option_list .trx_addons_demo_list_item a {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    color: #ACACAC;
    padding: 15px 0 6px;
}
.trx_addons_demo_options_wrapper .trx_addons_quick_option_list .trx_addons_demo_list_item:hover a {
    color: #161616;
}
.trx_addons_demo_list_item .name {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    margin: 0;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_options_toolbar {
    position: absolute;
    top: 50%;
    right: 100%;
    display: block;
    width: 50px;
    line-height: 60px;
    text-align: center;
    transform: translateY(-50%);
    background-color: #FEFEFE;
    box-shadow: -3px 0 10px -2px rgba(0,0,0,.13);
}

.trx_addons_demo_options_wrapper .trx_addons_demo_options_toolbar a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #222;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_options_toolbar a > i {
    font-size: 20px;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_panel .trx_addons_quick_option_list a img {
    text-align: center;
}

/* Hint */
[class*="hint_"] {
    position: relative;
    display: inline-block;
}
[class*="hint_"][aria-label]:after {
    content: attr(aria-label);
}
[class*="hint_"]:after {
    background: #191e2d;
    color: #fff;
    padding: 10px 16px 12px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 2px 2px 6px rgba(0,0,0,.3);
}
[class*="hint_"]:after,
[class*="hint_"]:before {
    position: absolute;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

[class*="hint_"]:before {
    content: "";
    position: absolute;
    background: transparent;
    border: 7px solid transparent;
    z-index: 1000001;
}
.hint_left:after,
.hint_left:before {
    right: 100%;
    bottom: 50%;
}
.hint_left:after {
    margin-bottom: -20px;
}
.hint_left:before {
    margin-right: -13px;
    margin-bottom: -7px;
    border-left-color: #191e2d;
}
[class*="hint_"]:hover:after,
[class*="hint_"]:hover:before {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.hint_left:hover:after,
.hint_left:hover:before {
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px);
}



/* Mobile */
.trx_addons_demo_options_wrapper.open {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    box-shadow: 0 2px 24px -2px rgba(0,0,0,.14);
}
.trx_addons_demo_options_wrapper.open:before {
    width: 100vw;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility:visible;
}
.trx_addons_demo_options_wrapper.close:before {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility:visible;
    width: 100vw;
}
.trx_addons_demo_options_wrapper  .trx_addons_demo_options_mobile_button {
    position: absolute;
    top: 50%;
    right: 100%;
    display: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px 0 0 5px;
    background: #fff;
    text-align: center;
    box-shadow: -3px 0 12px 0 rgba(0,0,0,.1);
    transform: translateY(-50%);
    -webkit-transition: right .3s ease-out;
    -moz-transition: right .3s ease-out;
    -ms-transition: right .3s ease-out;
    -o-transition: right .3s ease-out;
    transition: right .3s ease-out;
}

@keyframes move {
    0% {
        transform: rotate(0);
        animation-timing-function: linear;
    }
    100% {
        transform: rotate(360deg);
        animation-timing-function: linear;
    }
}
.trx_addons_demo_options_wrapper  .trx_addons_demo_options_mobile_button > a {
    animation: move 2s infinite linear;
}
.trx_addons_demo_options_wrapper .trx_addons_demo_options_mobile_button a > i {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 767px) {
    .trx_addons_demo_options_wrapper  .trx_addons_demo_options_mobile_button {
        display: block;
    }
    .trx_addons_demo_options_wrapper .trx_addons_demo_options_toolbar {
        right: calc(100% - 50px);
        -webkit-transition: right .3s ease-out;
        -moz-transition: right .3s ease-out;
        -ms-transition: right .3s ease-out;
        -o-transition: right .3s ease-out;
        transition: right .3s ease-out;
    }
    .trx_addons_demo_options_wrapper .trx_addons_demo_options_toolbar.close {
        right: 100%;
    }
    .trx_addons_demo_options_wrapper .trx_addons_demo_options_toolbar.open {
        right: 100%;
    }
}