
.detailWrap {
    margin-top: 80px;
}

.detailWrap h2 {
    margin: 20px 0;
}

.detailWrap p {
    font-family: var(--e-global-typography-0783073-font-family ), Sans-serif;
    font-size: var(--e-global-typography-0783073-font-size );
    font-weight: var(--e-global-typography-0783073-font-weight );
    line-height: var(--e-global-typography-0783073-line-height );
    letter-spacing: var(--e-global-typography-0783073-letter-spacing );
}

 /* Iframe styles */

.jobDetailsSection {
    background-color: #f2f3f5;
    padding-bottom: 100px;
}
.jobDetailsSection .jobDetailsWrapper {
    width: 45%;
    margin: 0 auto;
    padding-top: 0px;
}
@media (max-width: "$tablet-large") {
    .jobDetailsSection .jobDetailsWrapper {
        width: 80%;
   }
}
.jobDetailsSection .jobDetailsWrapper b {
    text-transform: uppercase;
    font-family: "$secondary-font-family";
}
.jobDetailsSection .jobDetailsWrapper .backLink {
    display: flex;
    margin: 40px 0;
    align-items: center;
    justify-content: space-between;
}
.jobDetailsSection .jobDetailsWrapper .backLink > div:first-child {
    margin-bottom: 0;
}
.jobDetailsSection .jobDetailsWrapper .backLink span:after {
    background: "$primaryColor";
}
@media (max-width: "$mobile-large") {
    .jobDetailsSection .jobDetailsWrapper .backLink {
        align-items: flex-start;
        flex-direction: column-reverse;
   }
    .jobDetailsSection .jobDetailsWrapper .backLink > div:first-child {
        margin-top: 20px;
   }
    .jobDetailsSection .jobDetailsWrapper .backLink :global .socialButtons {
        margin-top: -120px;
   }
    .jobDetailsSection .jobDetailsWrapper .backLink :global .socialButtons a {
        margin-left: 0;
   }
}


.iframeWrapper {
    min-height: 100vh;
    padding-bottom: "$margin-mobile";
    border-bottom: 1px solid "$primaryColorLight";
}
.iframeWrapper:after {
    content: '';
    top: 50px;
    left: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: spin 2s linear infinite;
    border: 5px solid "$borderColorLight";
    border-top: 5px solid "$borderColor";
}
.iframeWrapper iframe {
    z-index: 2;
    position: relative;
}
@keyframes spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
   }
    100% {
        transform: translateX(-50%) rotate(360deg);
   }
}