* {
    box-sizing: border-box;
}
body {
    background-color: #eee;
    margin: 0;
    padding: 0;
    font-family: 'Google_Sans' !important;
}
li {
    padding-top: 15px;
}
.PSC__attention {
    background-color: #c2eeff;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #46a6fb;
    color: #000;
}
.PSC__container {
    width: 90%;
    margin: 100px auto;
    min-height: 100vh;
    border: 2px solid #dadce0;
    border-radius: .5rem;
    padding: 4rem;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 20px -10px #8e8e8e;
}
.PSC__container h2 {
    margin: 0;
}
.PSC__container h1 {
    margin: 0 0 20px 0;
    font-size: 32px;
    color: #484848;
}
.PSC__project {
    display: flex;
    flex-wrap: wrap;
}
.PSC__project_title_container {
    width: 100%;
    min-height: 50px;
    border: 2px solid #333;
    display: flex;
    cursor: pointer;
    transition: 0.4s;
    margin: 30px 0;
    user-select: none;
    -moz-user-select: none;
    position: relative;
    align-items: center;
    padding: 0 10px;
}
.PSC__budget {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1;
    color: #f00;
    background-color: #fff;
}
.PSC__budget_nav {
    position: absolute;
    left: -24px;
    top: -10px;
    background-color: #f0dd16;
    width: 35px;
    height: 35px;
    border: 2px solid #efeb00;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 1;
    color: #b34500;
    text-decoration: none;
    -moz-user-select: none;
    user-select: none;
}
.PSC__color_percentage {
    position: absolute;
    background-color: whitesmoke;
    bottom: 0;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}
.PSC__project_title {
    display: block;
    width: 100%;
    font-size: 25px;
    color: #3e3e3e;
}
.PSC__project_creator, .PSC__project_progress {
    font-size: 14px;
}
.PSC__project_remaining {
    color: #686868;
    width: 100px;
}
.PSC__project_title_container:hover {
    background-color: #000;
    border: 2px solid #000;
    transition: 0.4s;
}
.PSC__project_title_container:hover .PSC__project_title, .PSC__project_title_container:hover .PSC__project_creator, .PSC__project_title_container:hover .PSC__project_progress, .PSC__project_title_container:hover .PSC__project_remaining {
    color: #fff !important;
    transition: 0.4s;
}
.PSC__authentication {
    display: flex;
    flex-direction: column;
    font-size: 24px;
}
.PSC__authentication span {
    padding-bottom: 10px;
}
.PSC__alert {
    position: fixed;
    z-index: 20998;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    min-width: 640px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 2px solid #e9e9e9;
    transition: transform 0.8s;
    transform: translateY(122px);
    transition: none;
    transform: translateY(0px);
}
.PSC__button {
    background: #fbfbfb;
    border: 1px solid #c1c1c1;
    border-radius: 2px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 16px;
    color: #202340;
    text-align: center;
    font-weight: 100;
}
.PSC__button:hover {
    background-color: #ebebeb;
    cursor: pointer;
    transition: 0.4s;
}
.PSC__status_button {
    position: relative;
    display: inline-block;
    padding: .8em;
    border-radius: 3px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.15384615;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-color: #07c;
    box-shadow: inset 0 1px 0 0 rgba(102,191,255,0.75),0 0 0 0 rgba(0,149,255,0);
    color: #FFF;
    background-color: #0095ff;
    min-width: 100px;
}
.PSC__status_button:hover {
    background-color: #007ed9;
    box-shadow: inset 0 1px 0 0 rgba(102,191,255,0.5),0 0 0 0 rgba(0,149,255,0);
    border-color: #07c;
    transition: 0.4s;
}
.PSC__done {
    border-radius: 2px;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    font-weight: 100;
    background-color: #aafeaa;
    color: #8c8c8c;
    border: 1px solid green;
    width: 90px;
    cursor: not-allowed;
    margin: 8px 0;
    display: block;
}
.PSC__notification_message_container {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.PSC__notification_body {
    width: 500px;
    margin: 0 18px;
    color: #0c0c0d;
    display: inline-block;
    max-height: 120px;
    overflow: auto;
    padding: 15px 0;
    box-sizing: border-box;
}
.PSC__notification_title {
    margin: 0;
    font-weight: bold;
    color: #da1d1d;
    font-size: 14px;
    margin-top: 10px;
}
.PSC__notification_message {
    font-size: 13px;
    font-weight: normal;
    margin-top: 5px;
}
.PSC {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#PSC__notification_close_btn {
    position: absolute;
    offset-block-start: 50%;
    offset-inline-end: 24px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 30px;
    width: 50px;
}
.PSC__close_btn {
    position: absolute;
    top: 30px;
    offset-inline-end: 15px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border: none;
    background: none;
    padding: 0;
    right: 0;
}
.PSC__close_btn:hover {
    background-color: #ebebeb;
    cursor: pointer;
}
.PSC__dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20999;
    color: #4d4d4d;
    background: rgba(245, 245, 247, 0.9);
}
.PSC__dialog_content_container {
    width: 80%;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(9, 6, 13, 0.2);
    border-radius: 3px;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px rgba(0, 0, 0, 0.04);
    display: flex;
    padding: 20px 50px;
}
.PSC__dialog_content {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    padding: 5px 0;
}
.PSC__dialog_content_title {
    width: 170px;
    color: #adadad;
    font-size: 16px;
    padding: 5px 10px;
}
.PSC__dialog_content_description {
    width: 75%;
    font-size: 16px;
    color: #656565;
    line-height: 25px;
}
.PSC__dialog_content_left {
    width: 70%;
    padding-left: 15px;
}
.PSC__dialog_content_right {
    width: 30%;
    font-size: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #708090 21px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px),
                linear-gradient(225deg, #708090 21px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px)0 64px;
    background-color:#708090;
    background-size: 64px 128px;
}
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 247, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th {
    text-align: left;
    padding: 10px;
}
td {
    padding: 10px;
}
tr {
    border-bottom: 2px solid #ccc;
}
tr:nth-child(2n){
    background-color: ghostwhite;
}
.form__flex_comment {
    display: flex;
    width: 100%;
    margin: 15px 0;
    align-items: center;
    justify-content: flex-end;
}
.form__input {
    padding: 16px 10px;
    border-radius: 6px;
    border: 2px solid #d4d4d4;
    width: 100%;
    font-family: 'ABeeZee';
}
.form__button_commnet {
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.7px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border: 1px solid #000;
    transition: 0.4s;
    font-weight: 500;
    font-family: 'ABeeZee';
}
.form__button_commnet:hover {
    background-color: #fff;
    border: 1px solid #000;
    color: #333;
    transition: 0.2s;
}
p {
    line-height: 28px;
    margin: 20px 0;
    color: #333;
    font-size: 16px;
    font-family: 'ABeeZee';
}
ul {
    list-style-type: symbols;
    margin: 30px 0;
    padding: 0 0 0 20px;
}
ul li {
    margin: 20px 0;
    padding: 0 0 0 15px;
    line-height: 26px;
}
.PSC_nav {
    display: flex;
    height: 60px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    z-index: 2;
    border-bottom: 2px solid #dadce0;
}
.shadow {
    -moz-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2);
    transition: .4s;
}
footer {
    background-color: #fff;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #353535;
    font-family: 'ABeeZee';
    letter-spacing: -.5px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 100;
    border-top: 2px solid #dadce0;
}
.no-work {
    font-size: 20px;
    display: block;
    margin: 20px 0;
    color: #909090;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 16px 26px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 20px;
    font-family: 'Google_Sans' !important;
    letter-spacing: -.5px;
    transform: translate(-50%, 0);
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

#PSC__loader {
    display: none;
}

.PSC__loader {
    border: 2px solid #000;
    border-radius: 50%;
    border-top: 2px solid #fff;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin-right: 10px;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.PSC__nav_item {
    color: #5f6368;
    font-weight: 100;
    padding: 10px;
    text-decoration: none;
}
.PSC__nav_item:hover {
    text-decoration: underline;
}
.PSC__skill_container {
    width: 100%;
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.skills {
  text-align: right;
  color: white;
  padding: 0 10px;
}
.PSC__skill_title {
    margin: 20px 0 0 0;
}
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}
.html {width: 90%; background-color: #337ab7;}
.css {width: 60%; background-color: #337ab7;}
.js {width: 40%; background-color: #337ab7;}
.jq {width: 50%; background-color: #337ab7;}
.npmscripts {width: 0%; background-color: #337ab7;}
.gulp {width: 0%; background-color: #337ab7;}
.react {width: 0%; background-color: #337ab7;}
.vue {width: 0%; background-color: #337ab7;}
.angular {width: 0%; background-color: #337ab7;}
.jest {width: 0%; background-color: #337ab7;}
.sass {width: 0%; background-color: #337ab7;}
.php {width: 25%; background-color: #337ab7;}
.sql {width: 20%; background-color: #337ab7;}

.opennav {
    font-size:30px;
    cursor:pointer;
    display: none;
}
.PSC__logo {
    width: 6%;
    border-radius: 50%;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.pd__containers {
    display: flex;
    margin-bottom: 50px;
}
.pd__title {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: linear-gradient(135deg, #708090 21px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px), linear-gradient(225deg, #708090 21px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px)0 64px;
    background-color: rgba(0, 0, 0, 0);
    background-size: auto auto, auto auto;
    background-color: #708090;
    background-size: 64px 128px;
}

.title {
    border-bottom: 2px solid #f0f0f0;
    margin: 0;
    min-height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
}
.title strong {
    min-width: 230px;
    display: inline-block;
    color: #828282;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: -0.5px;
}
.PSC__signin {
    font-weight: 100;
    font-size: 14px;
    letter-spacing: .25px;
    line-height: 16px;
    margin-left: 10px;
    margin-right: 8px;
    min-width: 96px;
    padding: 9px 23px;
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #4285f4;
    outline: none;
    background: #4285f4;
    background: -moz-linear-gradient(top,#4387fd,#4683ea);
    color: #fff;
    display: inline-block;
    position: relative;
}
.PSC__home_title {
    color: #888;
    font-family: 'Google Sans';
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 32px;
    margin: 30px 0;
}
#loader__container {
    display: none;
}
.loader__container {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(245, 194, 245, 0.95);
    width: 160px;
    height: 130px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 2px solid #f5d4f5;
    flex-direction: column;
}
#PSC__loader_main {
    border: 3px solid rgba(245, 194, 245, 0.41);
    border-radius: 50%;
    border-top: 3px solid #4485f4;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-right: 10px;
}
#checkOnline{
    color: red;
    position: fixed;
    background-color: #ffc9c9;
    height: 55px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}



.animation-ctn{
    text-align:center;
}
.icon {
    display: flex;
    align-items: center;
    justify-content: center;    
}
	@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 0px
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
   
    }

    100% {
        stroke-dashoffset: 960px;
      
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px 
    }

    100% {
        stroke-dashoffset: 960px
    }
}

@keyframes colored-circle { 
    0% {
        opacity:0
    }

    100% {
        opacity:100
    }
}

/* other styles */
/* .svg svg {
    display: none
}
 */
.inlinesvg .svg svg {
    display: inline
}

/* .svg img {
    display: none
} */

.icon--order-success svg polyline {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}
.icon--order-success svg circle#colored {
    -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
    animation: colored-circle 0.6s ease-in-out 0.7s backwards;
}

.post-tag {
    color: #39739d;
    background-color: #E1ECF4;
    border-color: #E1ECF4;
    display: inline-block;
    padding: .4em .5em;
    margin: 2px 2px 2px 0;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    transition: all .15s ease-in-out;
    cursor: pointer;
}

.post-tag:hover {
    color: #33658a;
    background-color: #cee0ed;
    border-color: #cee0ed;
}
.post-file {
    color: #399d3d;
    background-color: #E5F4E1;
    border-color: #EAF4E1;
    display: inline-block;
    padding: .4em .5em;
    margin: 2px 2px 2px 0;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    transition: all .15s ease-in-out;
    cursor: pointer;
}
.post-file a {
    text-decoration: none;
    color: inherit;
}

.post-file:hover {
    color: #448a33;
    background-color: #d0edce;
    border-color: #d4edce;
}

.post-page {
    color: #82399d;
    background-color: #EDE1F4;
    border-color: #F1E1F4;
    display: inline-block;
    padding: .4em .5em;
    margin: 2px 2px 2px 0;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    transition: all .15s ease-in-out;
    cursor: pointer;
}
.post-page {
    color: #8b3dae;
    background-color: #e8ceed;
    border-color: #ddceed;
}
.PSC__arrow {
    text-decoration: none;
    font-size: 60px;
    position: absolute;
    top: -10px;
}
.title span {
    font-family: 'Google_Sans';
    font-size: 18px;
}
.wpl__title {
    margin: 80px 0 30px 0;
}
.wpl__m_container {
    display: flex;
    width: 100%;
    flex-direction: column;
    border-bottom: 3px solid #eff0f1;
    margin: 20px 0;
}
.wpl__container {
    display: flex;
    width: 100%;
}
.wpl__button {
    display: flex;
    width: 150px;
    align-items: center;
    justify-content: center;
}
.wpl__info_container {
    width: 100%;
    padding: 0 20px;
}
.wpl__info_title h4 {
    margin: 0;
    line-height: 24px;
    font-size: 20px;
    display: flex;
    align-items: center;
}
.wpl__remainingtime {
    display: flex;
    width: 300px;
    justify-content: flex-end;
    align-items: center;
    font-size: 22px;
    color: #b04949;
}
.wpl__starttime {
    display: flex;
    padding: 5px 0;
    justify-content: space-between;
    direction: rtl;
}
.wpl__starttime span {
    font-size: 13px;
    color: #9199a1;
}

.progress_bar {
    height: 60px;
    display: flex;
    align-items: center;
    background-color: #e5fad7;
    padding: 0 10px;
}
.percentNumber {
    position: absolute;
    bottom: -30px;
    left: 0;
    color: #000;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .PSC_nav {
        padding: 0 5px;
    }
    .PSC__container {
        width: 95%;
        margin: 80px auto 20px;
        padding: 10px;
        background-color: #fff;
        box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
        border-radius: 5px;
        min-height: 100vh;
    }
    footer {
        background-color: #fff;
        height: 50px;
        border-top: 2px solid #d1d1d1;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #353535;
        font-family: 'ABeeZee';
        letter-spacing: -.3px;
        font-size: 12px;
        padding: 0;
    }
    .PSC__budget {
        position: absolute;
        right: -10px;
        top: -25px;
    }
    .PSC__project_title_container {
        width: 100%;
    }
    .PSC__project_remaining {
        width: 100%;
        font-size: 14px;
        padding: 10px 0;
    }
    .PSC__project_title {
        font-size: 20px;
        padding: 10px 0 0 0;
    }
    .PSC__color_percentage {
        background-color: rgba(113, 255, 132, 0.31);
        z-index: 0;
        display: none;
    }
    .PSC__project_title_container {
        flex-direction: column;
        align-items: flex-start;
    }
    .PSC__dialog_content_container {
        width: 96%;
        max-height: 80%;
        overflow-y: auto;
        background: #fff;
        border: 1px solid rgba(9, 6, 13, 0.2);
        border-radius: 3px;
        position: absolute;
        margin: 0 auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 3px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        padding: 5px 10px;
    }
    .PSC__dialog_content_left {
        width: 100%;
        padding: 0 10px;
    }
    .PSC__dialog_content_right {
        width: 100%;
        margin-left: 0px;
        display: none;
    }
    .desktopnav {
        display: none;
    }
    .opennav {
        display: block;
    }
    .PSC__logo {
        width: 38%;
    }
    .pd__containers {
        flex-direction: column;
    }
    .pd__title {
        width: 100%;
    }
    .title strong {
        min-width: 100%;
    }
    .title {
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 0;
    }
    .PSC__arrow {
        position: static;
    }
    .PSC__status_button {
        width: 90px;
        font-size: 14px;
        height: 40px;
        border: none;
        box-shadow: 0px 0px 12px #ccc;
        transition: 0.4s;
    }
    .wpl__container {
        flex-direction: column;
        align-items: flex-start;
    }
    .wpl__info_container {
        padding: 0;
    }
    .wpl__button {
        justify-content: flex-start;
        padding: 0 0 15px 0;
    }
    .wpl__remainingtime {
        width: 100%;
        justify-content: flex-end;
        padding: 10px 0;
    }
}
