/*
 Theme Name:   CCWS Child
 Theme URI:    https://www.chrisclarkewebservices.co.uk
 Description:  Child GeneratePress theme for client site development
 Author:       Chris Clarke
 Author URI:   https://www.chrisclarkewebservices.co.uk
 Template:     generatepress
 Version:      0.1
*/

/* Gravity forms off canvas panel */





.off-canvas-form {
    position: fixed;
    right: -100%;
    top: 0;
    width: 50vw;
    min-width: 300px;
    height: 100%;
    overflow-y: scroll;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 99999999;
}

.off-canvas-form.open {
    right: 0;
}

.off-canvas-form .close-off-canvas {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


@media (max-width: 768px){
.off-canvas-form {
    width:100%;
}
}

/* Utility Classes */

.ar-16-9 {
    aspect-ratio: 16/9;
}

.ar-9-16 {
    aspect-ratio: 9/16;
}

.ar-4-3 {
    aspect-ratio: 4/3;
}

.ar-1-1 {
    aspect-ratio: 1/1;
}

/* Visually Hidden */
.visually-hidden:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* No Underline */
.no-ul, .no-ul a {
    text-decoration: none;
}