/* Dark Mode */

.dark, .dark .job-tag {
    background-color: #333;
    color:white;
}
.dark .status, .dark .job, .dark #Customer {
    background: #1d1d1d;
}

.dark .play polygon, .dark .pause line, .dark .stop rect {
    fill: #dedede;
    stroke: #dedede;
}

.dark circle.progress-bar {
    stroke: #dedede !important;
}

/* Dark Mode End */

body {
	background-color:dedede;
	font-family: inter;
	height: fit-content;
}

#Wrapper {
    max-width: 1200px;
    margin: 50px auto;
    height: fit-content;
}

a {
	text-decoration:none;
	color: inherit;
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
	gap:16px;
}

.block {
	display: block;
}

.corner {
	border-radius: 5px;
	overflow: hidden;
}

.corner1 {
	border-radius: 3px;
	overflow: hidden;
}

.arrow.right {
    rotate: 180deg;
}

.divider {
	height:-webkit-fill-available;
	width:1px;
	background-color: #ccc;
}

.divider.white {
    background-color: white;
    margin-left: 8px;
}

.status {
    width: fit-content;
    padding: 4px;
    background: white;
    cursor: default;
}

.title
 {
    font-size: 48pX;
    display: inline-flex;
}

.f11 {
	font-size: 11pX;
}

.f16 {
	font-size: 16px;
}

.ctr {
    height: fit-content;
    background-color: #F45E5E;
    color: white;
    padding: 16px 24px;
}

#Customer
 {
    background: white;
}

.center
 {
    align-items: center;
}

.end {
    align-items: end;
}

.auto {
	justify-content: space-evenly;
}

#contact {
    background: #666;
	color: #ccc;
}

.job
 {
    background-color: white;
}

.job-info {
	padding-right: 8px;
}

.job-tag {
    background: #ccc;
    padding: 4px;
    font-size: 12px;
}


a.job-call-to-btn
 {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background-color: #f45e5e;
    padding: 8px 16px;
    border-radius:3px;
}

.job-call-to-btn svg {
    fill: white;
    padding-left: 4px;
}
.job-call-to-text {
    color: white;
    font-weight: bold;
}

#profile {
    justify-content: space-between;
}

.bold {
	font-weight: bold;
}

.em10 {
	padding: 1em 0;
}


.opacity40 {
    opacity: 40%;
}

.opacity90 {
	opacity: 90%;
}

.backgound-gray {
    background-color: #ccc;
}

.gap4 {
	gap: 4px;
}

.gap8 {
	gap: 8px;
}

.gap16 {
	gap: 16px;
}

#Jobs
 {
     width: 100%;
}


.job-image.desktop {
    width: -webkit-fill-available;
    overflow: hidden;
}

/* Responsive */

.responsive {
	display:none;
}

@media screen and (min-width:600px) and (max-width:1200px) {
.responsive {
	display:flex !important;
}
#Photo img {
    width: 100%;
    height: auto;
}

#profile, #Customer, #Contact
{
    max-width: calc(100% - 160px);
    width:100%;
    margin: auto;
}

.title
 {
    font-size: 5vw;
}

.carousel-cell {
    width: 100% !important;
    margin-right: 16px !important;
}

#Jobs
 {
     width:100%;
    width: calc(100% - 160px);
	margin: auto;
}
}

/* Desktop */

.desktop {
	display: none;
}

@media screen and (min-width:1201px) {
.desktop {
	display: flex;
}
#Customer .next svg.flickity-button-icon {
    margin-left: 2px;
}
.carousel-cell {
    width: calc(100%/3 - 10px);
    margin-right: 10px !important;
    padding-right: 8px;
}
#CTR {
    Overflow:hidden;
    position:relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#CTR:hover {
    transform: scale(1.05);
}

#CTR:hover .ctr::before {
  animation: shine 3s ease-out infinite;
}

.ctr::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 120%;
    background-image: linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 90%);
    top: 0;
    left: -500px;
    opacity: .6;
}

.icon {
    transition: all 0.3s ease-in-out;
}

#CTR:hover .icon {
  transform: translate(4px);
}
}

@keyframes shine { 0% {left: -500px;}  60% {left: 100%;}  to {left: 100%;}}

/* Mobile */

.mobile {
	display:none;
}

@media screen and (max-width:599px) {
    
#Wrapper {
    overflow:hidden;
}

.mobile {
	display:flex;
}

.job-desc.f16
 {
    min-height: 60px;
    overflow: hidden;
}

#Photo img {
    width: 100%;
    height: auto;
}

.title
 {
    font-size: 6vw;
}


.Job.row {
        flex-direction: column;
}
#Jobs .flickity-viewport {
    height: 50vh !important;
}
.carousel-cell {
    width: 100%;
	height: 100%;
	margin-right: 16px !important;
}
.job-image
 {
    overflow: hidden;
    align-items: anchor-center;
}
.job-image img
{
    width: 100%;
    height: fit-content;
}
.job-info
{
    padding: 1em;
}
#Jobs, #profile, #Customer, #Contact
{
    max-width: calc(100% - 40px);
    width:100%;
    margin: auto;
}

#Jobs .flickity-prev-next-button {
    height: 20% !important;
}
#Jobs .flickity-prev-next-button.next {
    right: 1em !important;
	top: 12em;
}
#Jobs .flickity-prev-next-button.previous
{
    left: initial !important;
    top: 12em;
    right: 4em;
}

#Wrapper {
    margin: 0 !important;
    padding-top: 20px;
}
#Customer .photo img
 {
    width: 50px;
    height: 50px;
}
#Customer audio
 {
    width: 150px;
}
#Customer .row {
    margin: auto;
}
#Customer {
    border-radius:5px;
}
}



/* -- Swith Toggle -- */

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: inset -1px 1px 2px #999;
}

.slider:before {
  position: absolute;
  content: "UI";
  height: 22px;
  width: 26px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: center;
  line-height: 1.4;
  border-radius: 3px;
  box-shadow: -1px 1px 2px #999;
}

input:checked + .slider {
  background-color: #999;
}

input:focus + .slider {
  box-shadow: 0 0 1px #999;
}

input:checked + .slider:before {
	content:"UX";
	text-align: center;
	background: #1d1d1d;
    color: white;
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

/* -- Styling flickity Buttons -- */


/* big buttons, no circle */
@media screen and (min-width:1201px) {
#Jobs .flickity-prev-next-button
 {
    background: none;
}
#Jobs .flickity-prev-next-button .arrow {
	fill: #ccc !important;
}
#Jobs .flickity-button:hover {
    background: initial;
}
}



@media screen and (max-width:1200px) {
#Jobs .flickity-prev-next-button
 {
    width: 50px;
    height: 100%;
    background: transparent;
}
#Jobs .flickity-prev-next-button .arrow {
	fill: white !important;
}
#Jobs .flickity-button:hover {
    background: none;
}
}

.flickity-button:focus {
    box-shadow: none;
}

/* arrow color */
#Jobs .flickity-prev-next-button .arrow {
  fill: #dedede;
}
#Jobs .flickity-prev-next-button.no-svg {
  color: white;
}

#Jobs .flickity-button:hover {
    background: none;
}

/* position dots in gallery */
#Jobs .flickity-page-dots {
  display: none;
}

.flickity-prev-next-button.next {
    right: -6em;
	width: 70px;
}


.flickity-prev-next-button.previous {
	left: -6em;
	width: 70px;
}

.job-image.responsive {
    max-height: 300px;
    max-width: 200px;
}

#Customer .carousel-cel {
    width: 100%;
    margin-right: 10px;
}

#Customer .flickity-button {
    display: block;
    background: transparent;
}

#Customer .flickity-button-icon {
    fill: white;
}


.flickity-prev-next-button {
  width: 50px;
  height: 50px;
}

@media (min-width:1201px){
    
#Jobs .flickity-prev-next-button.previous {
    display: none;
}

.dark #Jobs .flickity-prev-next-button.next
 {
    background: linear-gradient(270deg, #1d1d1d, #1d1d1d, #1d1d1d00);
}

#Jobs .flickity-prev-next-button .flickity-button-icon {
    width:30px;
    left:16px;
}

#Jobs .flickity-prev-next-button.next {
    right: 0px;
    z-index: 999;
    height: 100%;
    background: linear-gradient(270deg, #fff, #ffffff, #ffffff00);
    border-radius: 0 5px 5px 0;
}
    
#Customer .flickity-button {
    display: block;
    background: white;
    border-radius: 0;
    height: 112px;
}

.dark #Customer .flickity-button {
    background: #1d1d1d;
}

#Customer .previous .flickity-button-icon{
    margin-left: 10px;
}

#Customer .flickity-button-icon {
    fill: #ccc;
    width: 30px;
}

#Customer .flickity-prev-next-button.next {
    right: -70px;
    border-radius: 0 5px 5px 0;
}

#Customer .flickity-prev-next-button.previous {
    left: -70px;
    border-radius: 5px 0 0 5px;
}

#Customer {
    background: white;
    margin: auto;
    overflow: visible;
    width: calc(100% - 140px);
    height: 112px;
}
}

.mediPlayer {
    cursor: default;
}

/* Small Screen */

@Media (max-width:375px) {
    a.job-call-to-btn {
        position: initial;
        justify-content: space-around;
    }
    #Customer .job-title, #contact .divider, #Profile .status {
        display: none;
    }
    #Jobs .flickity-prev-next-button.next, #Jobs .flickity-prev-next-button.previous {
        top: 8em;
    }
    .slider:before {
        height: 22px;
        width: 24px;
        transition: .4s;
        font-size: 14px;
    }
    .switch
    {
        width: 55px;
        height: 30px;
    }
    .sub-title {
        font-size: 14px;
    }
}
