﻿
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    word-wrap: normal !important;
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

    .screen-reader-text:focus {
        clip: auto !important;
        background-color: #ddd;
        -webkit-clip-path: none;
        clip-path: none;
        color: #444;
        display: block;
        font-size: 1em;
        height: auto;
        line-height: normal;
        padding: 15px 23px 14px;
        right: 5px;
        text-decoration: none;
        top: 5px;
        width: auto;
        z-index: 100000
    }
/*
a:focus {
    color: blue !important;
    border: 1px dotted blue;
    border-color: blue;
}
    */

input:focus, select:focus, textarea:focus, .form-control:focus {
    color: blue !important;
    border: 1px dotted blue;
    border-color: blue;
}



[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    outline: 2px solid rgba(34,95,215,.3);
    -moz-outline-radius: 3px;
}


.product-details-page [type="radio"]:checked + label:focus, .product-details-page [type="radio"]:not(:checked) + label:focus {
    outline: 2px solid rgba(34,95,215,.3);
    -moz-outline-radius: 3px;
}

.add-to-cart-button:focus {
    outline: 2px solid rgba(34,95,215,.3);
    -moz-outline-radius: 3px;
}


.product-details-page .item-description input {
    position: absolute !important;
    top: 0px;
    left: 30px;
    display: initial;
}

    .product-details-page .item-description input[type='radio']:after {
        width: 15px;
        height: 15px;
        position: relative;
        background-color: #fff;
        content: '';
        display: inline-block;
        border: 1px solid #fff;
    }

.mydiv:focus {
    border: 1px dashed blue;
    background-color: transparent;
}



a:hover {
    color: var(--lgt-blue);
}

a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
}


.mynav a:focus {
    outline: none;
    width: 80px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 0 0 3px rgba(0, 243, 243, 0.4);
}

a:active {
    color: var(--drk-blue);
}

button {
    display: block;
    text-align: center;
    color: var(--blue);
    background-color: #fff;
    border: 2px solid var(--blue);
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    button:hover {
        color: #fff;
        background-color: var(--lgt-blue);
        border-color: var(--lgt-blue);
    }

    button:active {
        color: #fff;
        background-color: var(--drk-blue);
        border-color: var(--drk-blue);
    }

    button:focus {
        outline: none;
        box-shadow: 0 0 0 5px rgba(21, 156, 228, 0.4);
    }

.gradient-btn:hover {
    outline: none;
    box-shadow: 0 0 0 5px rgba(21, 156, 228, 0.4);
}

.input-validation-error:focus {
    border-color: #c71b00;
    box-shadow: 0 0 0 .25rem rgba(220,53,69,.25);
}

.store-name:hover {
    color: #000;
}
/*

.radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

input[type="radio"] {
    position: absolute;
    width: 18px;
    height: 18px;
    cursor: pointer;
    opacity: 0;
    order: 1;
}

.radio label {
    padding-left: 8px;
    font-family: sans-serif;
    line-height: 28px;
    color: var(--black);
    cursor: pointer;
    order: 2;
}

.radio span:before {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    content: "";
    background-color: #fff;
    border: 2px solid #597183;
    border-radius: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}
*/
input[type="radio"]:checked ~ span:before {
    border: 5px solid var(--blue);
}

input[type="radio"]:hover ~ span:before {
    border-color: var(--blue);
}

input[type="radio"]:focus ~ span:before {
    outline: none;
    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
}


.checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


    .checkbox label {
        padding-left: 8px;
        font-family: sans-serif;
        line-height: 28px;
        color: var(--black);
        cursor: pointer;
        order: 2;
    }

    .checkbox span:before {
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-top: 4px;
        content: "";
        background-color: #fff;
        border: 2px solid #597183;
        border-radius: 100%;
        box-sizing: border-box;
        transition: box-shadow 0.3s ease;
    }

input[type="checkbox"]:checked ~ span:before {
    border: 5px solid var(--blue);
}

input[type="checkbox"]:hover ~ span:before {
    border-color: var(--blue);
}

input[type="checkbox"]:focus ~ span:before {
    outline: none;
    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
}

/*
.focused {
    border: 1px dashed blue;
    background-color: transparent;
}

.focus--keyboard, a:focus, button:focus, input:focus, select:focus, textarea:focus{
    border-color: #ffaa55;
    box-shadow: 0 0 6px 2px #ffaa55;
    outline: none;
}

.focus--mouse, a.focus--mouse:focus, button.focus--mouse:focus, input.focus--mouse:focus, select.focus--mouse:focus, textarea.focus--mouse:focus {
    border-color: #5aa8bd;
    box-shadow: 0 0 6px 2px #5aa8bd;
    outline: none;
}
*/