﻿body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

    body * {
        box-sizing: border-box;
    }

.text-light {
    color: #fff;
}

.text-dark {
    color: #000;
}

section.ag-widget {
	display: none !important;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 6vh;
    padding: 1rem;
    background-color: #ffffff;
    z-index: 9;
    border-bottom: 1px solid #dedede;
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .logo img,
    header .logo embed {
        width: 100%;
        max-width: 150px;
    }

    header .nav-items {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        max-width: 30%;
    }

        header .nav-items .nav-item {
            font-size: 1.05rem;
        }

            header .nav-items .nav-item:not(.btn) {
                color: #000;
                text-decoration: none;
                transition: all .3s ease;
            }

                header .nav-items .nav-item:not(.btn):hover {
                    color: #4876da;
                }

            header .nav-items .nav-item.btn {
                box-shadow: 0 0 0 0.2rem #cdf;
            }

                header .nav-items .nav-item.btn:hover {
                    background-color: #cdf;
                }

/* Main */
main {
    margin-top: 100.5px;
    min-height: calc(100vh - 188.5px);
}

main p.cta-disclaimer {
    font-size: 1rem;
    margin: .5rem auto;
    text-align: center;
}

/* Footer */
footer {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

    footer > span {
        margin-right: 2rem;
    }

    footer .links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size:13px;
    }

        footer .links * {
            margin-right: .5rem;
        }

        footer .links a:last-of-type {
            margin-right: unset;
        }

/* Cancel & Resume Modals */
/*.oc-extension-directions-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2001;
    text-align: center;
}

.oc-chrome-cancel-modal,
.oc-chrome-resume-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
}

    .oc-chrome-cancel-modal .oc-modal-container, .oc-chrome-resume-modal .oc-modal-container {
        width: 430px;
        height: 185px;
        position: absolute;
        top: 35%;
        left: 50%;
        margin-left: -225px;
        box-shadow: 0px 0px 3px rgba(0,0,0,.35);
    }

        .oc-chrome-cancel-modal .oc-modal-container h2, .oc-chrome-resume-modal .oc-modal-container h2 {
            color: black;
            font-size: 22px;
            width: 367px;
            font-weight: 400;
            padding-top: 25px;
            padding-left: 25px;
            font-family: Helvetica, Arial, Sans-Serif;
            line-height: 25px;
        }

    .oc-chrome-cancel-modal .oc-yes, .oc-chrome-resume-modal .oc-yes {
        right: 122px;
        padding: 7px 0;
        border: 1px solid #ada5a5;
        background-color: transparent;
    }

    .oc-chrome-cancel-modal button, .oc-chrome-resume-modal button {
        cursor: pointer;
        bottom: 30px;
        position: absolute;
        width: 80px;
        text-align: center;
        font-size: 15px;
        padding: 5px 0;
        height: 35px;
    }

    .oc-chrome-cancel-modal .oc-no, .oc-chrome-resume-modal .oc-resume {
        right: 27px;
        border: none;
        background-color: #008CBA;
        padding: 7px 0;
    }*/

	/* New Cancel Modal */
	main > .overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		background-color: rgba(0, 0, 0, .8);
		opacity: 0;
		display: none;
	}

	main > .cancel-modal {
		width: 100%;
		max-width: 800px;
		position: fixed !important;
		top: 45%;
		left: 50%;
		transform: translate(-50%, -50%);
		background-color: #fff;
		border-radius: 5px;
		position: relative;
		z-index: 99999;
		opacity: 0;
		display: none;
	}

	/*main > .cancel-modal .close {
		position: absolute;
		top: 0.5rem;
		right: 1rem;
		opacity: 0.5;
		font-size: 2rem;
		cursor: pointer;
		transition: all 0.3s ease;
		z-index: 999999;
	}*/

	main > .cancel-modal .close:hover {
		opacity: 1;
	}

	main > .cancel-modal .modal-body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 4rem 2rem;
		padding-bottom: 3rem;
		text-align: center;
	}

	main > .cancel-modal .modal-body .heading h2 {
		font-size: 34px;
		font-weight: 500;
		margin: 0;
	}

	main > .cancel-modal .modal-body .description {
		margin-top: 20px;
		margin-bottom: 34px;
	}

	main > .cancel-modal .modal-body .description p {
		font-size: 27px;
		font-weight: 300;
		margin: 0;
		color: rgba(0, 0, 0, 0.75);
	}

	main > .cancel-modal .modal-body .cta {
		width: 100%;
		max-width: 80%;
		display: flex;
		justify-content: center;
		gap: 1rem;
	}

	main > .cancel-modal .modal-body .cta .btn {
		width: 100%;
		height: 70px;
		padding: 15px 45px;
		background-color: #20a800;
		border-radius: 0.25rem;
		border: none;
		font-size: 20px;
		color: #fff;
		transition: all 0.3s ease;
		font-weight: 500;
		cursor: pointer;
	}

	main > .cancel-modal .modal-body .cta .btn:hover {
		background-color: #198600;
	}

	main > .cancel-modal .modal-body .cta .btn.close {
		background-color: #ccc;
		color: #000;
	}

	main > .cancel-modal .modal-body .cta .btn.close:hover {
		background-color: #bbb;
	}

	main > .cancel-modal .modal-body .sub-description {
		margin-top: 34px;
	}

	main > .cancel-modal .modal-body .sub-description p {
		font-size: 24px;
		font-weight: 300;
		margin: 0;
		color: rgba(0, 0, 0, 0.75);
	}

	main > .cancel-modal .modal-footer:not(:empty) {
		border-top: 1px solid rgba(0, 0, 0, 0.5);
		padding: 1rem 0 1.5rem;
		text-align: center;
		position: relative;
		flex-direction: column;
	}

	main > .cancel-modal .modal-footer:empty {
		display: none;
	}

	main > .cancel-modal .modal-footer p {
		font-size: 19px;
		font-weight: 300;
		margin: 0;
		margin-bottom: 0.5rem;
	}

	main > .cancel-modal .modal-footer a {
		font-size: 19px;
		font-weight: 300;
		margin: 0;
		color: rgba(0, 0, 0, 0.8);
		transition: all 0.3s ease;
	}

	main > .cancel-modal .modal-footer a:hover {
		color: rgba(0, 0, 0, 1) !important;
	}

	main > .cancel-modal .modal-footer .modal-footer-links {
		position: absolute;
		bottom: 0.5rem;
		right: 1rem;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}

	main > .cancel-modal .modal-footer .modal-footer-links a {
		color: #696969;
		font-size: 16px;
	}

@media only screen and (max-width: 1366px) {
    html {
        font-size: 13px;
    }

    header .logo img {
        max-width: 100px;
    }

    main {
        margin-top: 72px;
        min-height: calc(100vh - (72px + 88px));
    }
}