#popup_signup_resume {
	#signupModel {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 999;

		.BGmodel {
			top: 0;
			width: 100vw;
			height: 100vh;
			background: rgba(0, 0, 0, 0.8);
			position: fixed;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.modal-close {
			position: absolute;
			right: 40px;
		}

		.popup {
			background: #fff;
			padding: 30px 40px;
			position: relative;
			width: 550px;
			max-width: 90%;
			max-height: 90%;
			border-radius: 5px;

			&__title {
				font-size: 20px;
				font-weight: bold;
			}

			&__date {
				color: #666;
				font-size: 12px;
				margin-top: 6px;
			}

			&__call {
				padding: 10px 30px;
				background: #e6e6e6;
				float: right;
				margin-top: -45px;
				font-weight: bold;
				box-shadow: 1px 1px 2px #666;

				&--icon {
					width: 15px;
					margin-right: 5px;
				}
			}

			&__status {
				display: flex;
				flex-wrap: wrap;

				&--radio {
					cursor: pointer;
					width: 33.33%;
					margin-top: 20px;
					text-align: center;

					input[type="radio"] {
						margin: 4px 5px 0 0;
						display: none;
					}

					input[type="radio"]+label {
						margin: 0;
						padding: 5px 10px;
						font-weight: normal;
						width: 90%;
						text-align: left;
					}

					input[type="radio"]+label span {
						display: inline-block;
						width: 12px;
						height: 12px;
						margin: -1px 7px 0 0;
						vertical-align: middle;
						cursor: pointer;
						-moz-border-radius: 50%;
						border-radius: 50%;
					}

					input[type="radio"]:checked+label {
						cursor: pointer;
						box-shadow: 1px 1px 2px #666;
						font-weight: bold;
						text-align: center;
					}
				}
			}

			&__note {
				margin-top: 20px;
				border-top: 1px solid #ddd;
				padding-top: 30px;

				&--input {
					border: 1px solid #ddd;
					padding: 10px 15px;
					width: 75%;
				}

				&--submit {
					width: 30%;
					display: flex;
					align-items: center;
					justify-content: center;
					margin-left: 5%;
					background: #00bcd4;
					border-radius: 3px;
					color: #fff;
					font-weight: bold;
					cursor: pointer;
					padding: 0.8em 0;
				}

				&--list {
					margin-top: 20px;
					width: 100%;
					max-height: 30vh;
					overflow-y: scroll;
				}

				&--item {
					display: flex;
					margin-bottom: 10px;
				}

				&--status {
					width: 12px;
					height: 12px;
					border-radius: 50%;
				}

				&--text {
					width: 85%;
					margin-left: 3%;
				}

				&--date {
					color: #7e7e7e;
					font-size: 9px;
					line-height: 1;
				}

				&--messages {
					font-weight: bold;
				}

				&--delete {
					width: 10%;
					text-align: center;

					img {
						width: 30%;
						cursor: pointer;
					}
				}

				.flex {
					align-items: flex-start;
				}
			}

			&__detail {
				&--container {
					width: 100%;
					display: flex;
					align-items: baseline;
					line-height: 2.4;
					margin-top: 0.5em;
				}
				&--container.action {
					justify-content: space-between;
			    line-height: 1;
			    margin-top: 2em;
				}

				&--title {
					width: 40%;
					font-weight: bold;
				}

				&--value {
					width: 60%;
					word-wrap: break-word;
    			line-height: 1.5;
				}
			}

		}

		.btn-resume {
			border-radius: 30px;
	    background: #74b32d;
	    padding: 12px 2em;
	    color: #fff;
	    font-weight: bold;
	    font-size: $font-size-small;
	    border: 0;
		}

		.btn-startover {
			color: #073396;
	    display: inline-block;
	    border-radius: 30px;
	    border: 2px solid #073396;
	    padding: 12px 1em;
	    font-weight: bold;
	    font-size: $font-size-small;
		}
	}

	@media only screen and (max-width: 992px) {
		#signupModel {
			.popup {
				max-height: 90vh;
				border-radius: 0;
				overflow-y: scroll;
				padding: 25px;

				&__call {
					display: block;
					float: unset;
					text-align: center;
					margin-top: 20px;
				}

				&__status {
					&--radio {
						position: relative;
						width: 50%;
						text-align: left;

						input[type="radio"]+label {
							width: 100%;
							font-size: 13px;
						}
					}
				}

				&__note {
					&--list {
						max-height: unset;
						overflow-y: unset;
					}

					&--delete {
						img {
							width: 45%;
						}
					}
				}

				&__detail {
					&--container {
						width: 100%;
						display: block;
						line-height: 2.4;
					}
					&--container.action {
				    line-height: 1;
				    margin-top: 2em;
					}

					&--title {
						width: 100%;
						font-weight: bold;
					}

					&--value {
						width: 100%;
						word-wrap: break-word;
	    			line-height: 1.5;
					}
				}
			}

			.modal-close {
				right: 25px;
			}

			.btn-resume {
		    padding: 0.5em 2em;
			}
		}
	}
}