input.toggleSwitch[type=checkbox]{
height: 0;
width: 0;
visibility: hidden;
}

label.toggleSwitch {
cursor: pointer;
text-indent: -9999px;
width: 200px;
height: 100px;
background: grey;
display: block;
border-radius: 100px;
position: relative;
}

label.toggleSwitch:after {
content: '';
position: absolute;
top: 5px;
left: 5px;
width: 90px;
height: 90px;
background: #fff;
border-radius: 90px;
transition: 0.3s;
}

input.toggleSwitch:checked + label {
background: #bada55;
}

input.toggleSwitch:checked + label:after {
left: calc(100% - 5px);
transform: translateX(-100%);
}

label.toggleSwitch:active:after {
width: 130px;
}

#introSection ol	{
    font-size:16px;
}
@media(min-width:576px)	{
    #introSection ol	{
        font-size:20px;
    }
}
@media(min-width:992px)	{
    #introSection ol	{
        font-size:24px;
    }
}

@media (max-width: 576px) {
    #dClassicPackage	{
        order: 1
    }
    #dBasicPackage	{
        order: 2
    }
    #dProPackage	{
        order: 3
    }
}
.formSection h1	{
    font-size:3.6rem;
    font-weight:bold;
}
@media (max-width:576px)	{
    .formSection h1	{
        font-size:2.6rem;
        font-weight:bold;
    }
}
#dBasicPackage > .packageContent, #dProPackage > .packageContent	{
}

#dClassicPackage > .packageContent	{
    height: 100%
}

#dBasicPackage, #dProPackage	{
    /*margin-top: 20px;*/
}

#dBasicPackage	{
    order: 1
}
#dClassicPackage	{
    order: 2;
}
#dProPackage	{
    order: 3
}

#expediteOptionsTable td	{
    padding-right: 30px;
}
            
.boiPackageContent {
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    height: 100%;
    background-color: var(--light-bg-color);
    margin: 6px;				
    border: 4px solid var(--primary-color);
    position: relative;
}

.boiPackageContent.gray	{				
    border: 4px solid #b7b5b4;
}

.boiPackagePrice {
    text-align: center;
    width: 120px;
    margin: 20px auto 0 auto;
    background-color: var(--primary-color);
    padding: 5px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
}

.boiPackageTitle {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    margin: 20px 0;
}
.boiStateText {
    font-size: 1.2em;
}

.boiPackageButton {
    text-align: center;
}

.boiPackageButton > button	{
    font-weight: bold;
    margin: 20px 0;
    background-color: var(--primary-color);
    border: 0;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
}

.boiPackageButton > button.white	{
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.boiPackageText	{
    font-size: 16px;
    padding: 0 30px;
}

.boiPackageHeader {
    position: relative;
}
.boiPackageHeader > img {
    max-width: 80%;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
}

.boiPackageBox > .boiPackageContent > img    {
    max-width: 50%;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
}